I have written an app which uses an URLConnection to get a .html file. Everything works fine over wifi. But over 3g the file is not returned correctly. When i try to access the website via the browser it works fine. Anyone has a suggestion?

Update: Here is my code:

URL downloadUrl;
URLConnection downloadConnection;
InputStream inputStream;
byte[] inputBytes;
String[] output;
private void downloadSource(String pUrl)
{

    try
    {
        downloadUrl = new URL(pUrl);

        downloadConnection = downloadUrl.openConnection();
        downloadConnection.setConnectTimeout(10000);
        downloadConnection.setReadTimeout(10000);


        inputStream = downloadConnection.getInputStream();
        ByteArrayOutputStream result = new ByteArrayOutputStream();

        inputBytes = new byte[10000];
        int i;
        int i1 = 0;
        while ((i = inputStream.read(inputBytes)) > 0)
        {
            result.write(inputBytes, 0, i);
            result.flush();
            i1 += i;
        }
        result.flush();
        result.close();
        output = result.toString().split("\n"); 

    }
    catch (Exception e)
    {
        e.printStackTrace();
    }


}
link|improve this question
could you please provide the code? Also attach the log-file if possible. – stefan Nov 12 '11 at 13:54
I added it to the question. The log-file does not contain anything for this. – Koepasso Nov 12 '11 at 17:11
can you ping the URL while on 3G network? – stefan Nov 12 '11 at 23:30
Yes i can ping it without any problem. – Koepasso Nov 13 '11 at 9:11
I just noticed that some part of the document is downloaded, but it doesn't contain any newline characters. So everything is written into output[0]. But it does only write about 4000 chars to it. – Koepasso Nov 13 '11 at 10:26
show 4 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.