科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道开发J2ME联网应用程序

开发J2ME联网应用程序

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

尽管目前的无线网络不够理想,手机联网还是给我们开发人员不小的震撼的。毕竟这真的是件神奇的事情,不是吗?本文将讲述如何应用J2ME平台中的通用联网框架开发联网的应用程序。 首先,必须说明一点:MIDP中规定。

作者:中国IT实验室 来源:中国IT实验室 2007年9月22日

关键字:

  • 评论
  • 分享微博
  • 分享邮件

在本页阅读全文(共4页)


   private void closeConnection(HttpConnection conn, DataInputStream dis,
           DataOutputStream dos)
   {
       if(conn!= null)
       {
           try
           {
               conn.close();
           }
           catch(IOException e)
           {}
       }
       
       if(dis!=null)
       {
           try
           {
               dis.close();
           }
           catch(IOException e)
           {}
       }
       
       if(dos!=null)
       {
           try
           {
               dos.close();
           }
           catch(IOException e)
           {}
       }
       
   }

}


import javax.microedition.lcdui.Command;
import javax.microedition.lcdui.CommandListener;
import javax.microedition.lcdui.Displayable;
import javax.microedition.lcdui.Form;
import javax.microedition.lcdui.StringItem;


public class DisplayCanvas extends Form implements CommandListener
{
   private UIController uicontroller;
   private StringItem result;
   private int index = 0;
   private boolean first = true;
   public static Command backCommand = new Command("Back", Command.BACK, 2);

   public DisplayCanvas(UIController uicontroller)
   {
       super("Result");
       this.uicontroller = uicontroller;
       result = new StringItem("you have input:", null);
       this.addCommand(backCommand);
       this.setCommandListener(this);

   }

   public void init(String message)
   {
       if (first)
       {
           result.setText(message);
           index = this.append(result);
           first = false;
       }
       else
       {
           this.delete(index);
           result.setText(message);
           this.append(result);
       }

   }


   public void commandAction(Command arg0, Displayable arg1)
   {
       uicontroller.handleEvent(UIController.EventID.DISPLAY_BACK_TO_INPUT,
               null);

   }

}

查看本文来源

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章