Fetch Page Midlet : Networks « J2ME « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Collections Data Structure
8. Database SQL JDBC
9. Design Pattern
10. Development Class
11. Email
12. Event
13. File Input Output
14. Game
15. Hibernate
16. J2EE
17. J2ME
18. JDK 6
19. JSP
20. JSTL
21. Language Basics
22. Network Protocol
23. PDF RTF
24. Regular Expressions
25. Security
26. Servlets
27. Spring
28. Swing Components
29. Swing JFC
30. SWT JFace Eclipse
31. Threads
32. Tiny Application
33. Velocity
34. Web Services SOA
35. XML
Microsoft Office Word 2007 Tutorial
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Java » J2ME » NetworksScreenshots 
Fetch Page Midlet
Fetch Page Midlet

/*
Learning Wireless Java
Help for New J2ME Developers
By Qusay Mahmoud
ISBN: 0-596-00243-2

*/
import java.io.*;
import javax.microedition.io.*;
import javax.microedition.lcdui.*;
import javax.microedition.midlet.*;

public class FetchPageMidlet extends MIDlet {

   private Display display;

   String url = "http://www.javacourses.com/hello.txt";

   public FetchPageMidlet() {
      display = Display.getDisplay(this);
   }

   /**
    * This will be invoked when we start the MIDlet
    */
   public void startApp() {
      try {
         getViaStreamConnection(url);
      catch (IOException e) {
         //Handle Exceptions any other way you like.
         System.out.println("IOException " + e);
         e.printStackTrace();
      }
   }

   /**
    * Pause, discontinue ....
    */
   public void pauseApp() {
  
   }

   /**
    * Destroy must cleanup everything.  
    */
   public void destroyApp(boolean unconditional) {
   }

   /**
    * read url via stream connection
    */
   void getViaStreamConnection(String urlthrows IOException {
      StreamConnection c = null;
      InputStream s = null;
      StringBuffer b = new StringBuffer();
      TextBox t = null;
      try {
         c = (StreamConnection)Connector.open(url);
         s = c.openInputStream();
         int ch;
         while((ch = s.read()) != -1) {
            b.append((charch);
         }
         System.out.println(b.toString());
         t = new TextBox("Fetch Page", b.toString()10240);
      finally {
         if(s != null) {
            s.close();
         }
         if(c != null) {
            c.close();
         }
      }
      // display the contents of the file in a text box.
      display.setCurrent(t);
   }

}


           
       
Related examples in the same category
1. MIDlet to invoke a CGI script.
2. MIDlet to invoke a CGI script (POST method is used)
3. Https MIDlet
4. Pass a cookie (stored in rms) between the MIDlet and a Java servlet.
5. Use GET or POST to communicate with a Java servlet.
6. Use Java servlets sessions to tally golf scores.
7. Http Test
8. An example MIDlet to invoke a CGI script.An example MIDlet to invoke a CGI script.
9. Timer ServerTimer Server
10. Http ExampleHttp Example
11. Socket connectionSocket connection
12. Http ConnectionHttp Connection
13. Cookie MIDletCookie MIDlet
14. JargoneerJargoneer
15. Post MIDlet
16. Patchy MIDletPatchy MIDlet
17. MIDlet to invoke a CGI script (GET method).MIDlet to invoke a CGI script (GET method).
18. Invoke Servlet Midlet 2
19. Invoke Servlet Midlet 1
20. MIDlet to invoke a CGI script (POST method is used) (2)MIDlet to invoke a CGI script (POST method is used) (2)
21. Demonstrates the functionality of DatagramConnection framework.Demonstrates the functionality of DatagramConnection framework.
22. Sample to demonstrate Http GET and POST from MIDlet
23. Get file from networkGet file from network
24. Midlet Servlet 2Midlet Servlet 2
25. MIDlet to fetch a page using an HttpConnectionMIDlet to fetch a page using an HttpConnection
26. A simple network clientA simple network client
27. Send client request and Get server responseSend client request and Get server response
28. Socket MIDletSocket MIDlet
29. www.amazon.com Book Ranking MIDletwww.amazon.com Book Ranking MIDlet
30. Time Server
31. Http MIDletHttp MIDlet
32. DatagramSenderDatagramSender
33. Datagram Receiver
ww_w.__ja_v_a__2_s.___c_o_m__ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.