Search:

Type: Posts; User: XxxXxx896

Search: Search took 0.11 seconds.

  1. Replies
    7
    Views
    2,104

    Re: Read Textfile from server, memory issue

    I'am compiling the last posted code in Eclipse for Android. I look up the memory consumption in settings and running services. You want the .apk?
  2. Replies
    7
    Views
    2,104

    Re: Read Textfile from server, memory issue

    First I started a service, this service starts a this thread, which reads my text file.

    public int onStartCommand(Intent intent, int flags, int startId) {
    executethread = new Thread(new...
  3. Replies
    7
    Views
    2,104

    Re: Read Textfile from server, memory issue

    I'am only creating URL, URLConnection, InputStreamReader and the BufferedReader each time. Tried to declare at the beginning and only using it without creating it again, but same result.
  4. Replies
    7
    Views
    2,104

    Read Textfile from server, memory issue

    Hello;), I use this code to read a textfile from my server:


    String nextLine;
    URL url = null;
    URLConnection urlConn = null;
    InputStreamReader inStream = null;
    ...
Results 1 to 4 of 4