Re: [android-developers] Re: Download file in webview from url

2013-05-11 Thread Rahul Kaushik
Thanks bob I also need to show other attachments in the web view, as the same app are perfectly displaying on ipad :( Tx RK On Fri, May 10, 2013 at 8:31 PM, bob b...@coolfone.comze.com wrote: I think the only one of those you can definitely load in a WebView is an image. That would be

[android-developers] Re: Download file in webview from url

2013-05-10 Thread bob
I think the only one of those you can definitely load in a WebView is an image. That would be done like so: * @Override* * protected void onCreate(Bundle savedInstanceState) {* * super.onCreate(savedInstanceState);* * WebView wv = new WebView(this);* * setContentView(wv);* *

[android-developers] Re: Download file from server

2009-08-25 Thread canadiancow
I was briefly looking into this earlier today. I believe it can be done with java.net.URL ( http://d.android.com/reference/java/net/URL.html ), but I'll probably have more information on Thursday. On Aug 25, 4:54 pm, engin enginarsla...@gmail.com wrote: Hi I am tryin to connect server and

[android-developers] Re: Download file from server

2009-08-25 Thread Jason Proctor
some people on this list are clever, but they're not mind-readers. polite request to posters: POST ALL THE ERROR INFORMATION YOU CAN. thanks. Hi I am tryin to connect server and download file from server. Here is my code Ftp ftp = new Ftp(hostname,user,password); try {

[android-developers] Re: Download file from server

2009-08-25 Thread engin
Anyone who used ftp client before can understand my problem or can give some suggestion. My problem is this this code piece work in java project succesfully but when I try it in android error gives. I think thhere are some limitations and I want to learn what are possible problems. On Aug 26,

[android-developers] Re: Download file from server

2009-08-25 Thread engin
here is log file: 08-26 01:06:55.988: WARN/dalvikvm(1362): VFY: register1 v2 type 12, wanted 11 08-26 01:06:55.988: WARN/dalvikvm(1362): VFY: rejecting opcode 0x71 at 0x0204 08-26 01:06:55.998: WARN/dalvikvm(1362): Exception Ljava/lang/ VerifyError; thrown during

[android-developers] Re: Download file from server

2009-08-25 Thread engin
I have still get error even if I used method that you suggest. I have internet permission. My code piece that causes error is following: String url = ftp://username:passw...@ftp.something.net/test/ Button.apk; is = new URL (url).openStream (); Log is as follows: 08-26

[android-developers] Re: Download file from server

2009-08-25 Thread engin
Yes I can. On Aug 26, 1:57 am, Jason Proctor jason.android.li...@gmail.com wrote: can you connect to that server using the command line? I have still get error even if I used method that you suggest. I have internet permission. My code piece that causes error is following:          

[android-developers] Re: Download file

2009-08-24 Thread engin
Hi I am trying to download something from server.I am downloading using ftpclient but problem is this can ı use download manager of telephone. The reason that ı want to use is to get notifications. On Aug 23, 4:25 pm, engin enginarsla...@gmail.com wrote: Hi, how can we download a file from

[android-developers] Re: Download file

2009-08-24 Thread engin
Hi I am trying to download something from server.I am downloading using ftpclient but problem is this can ı use download manager of telephone. The reason that ı want to use is to get notifications. On Aug 23, 4:25 pm, engin enginarsla...@gmail.com wrote: Hi, how can we download a file from