J2ME文件上传实例(FileConnector链接文件系统,非RMS)计算机等级考试

文章作者 100test 发表时间 2010:01:01 12:16:22
来源 100Test.Com百考试题网


  代码如下:
  客户端:
  import java.io.InputStream.
  import java.io.OutputStream.
  import java.io.ByteArrayOutputStream.
  import javax.microedition.io.*.
  import javax.microedition.midlet.MIDlet.
  import javax.microedition.midlet.MIDletStateChangeException.
  import javax.microedition.io.file.*.
  public class HttpConnect extends MIDlet {
  public HttpConnect() {
  // TODO Auto-generated constructor stub
  }
  protected void destroyApp(boolean arg0) throws MIDletStateChangeException {
  // TODO Auto-generated method stub
  }
  protected void pauseApp() {
  // TODO Auto-generated method stub
  }
  protected void startApp() throws MIDletStateChangeException{
  String url = "http://192.168.0.114:8080/EngineService/sync".
  try{
  byte[] data = null.
  if( System.getProperty("microedition.io.file.FileConnection.version" ) != null ){
  try {
  FileConnection fc = (FileConnection)Connector.open("file:///root1/test.png", Connector.READ_WRITE).
  //fc.create().
  InputStream in = fc.openInputStream().
  fc.close().

  编辑特别推荐:

  全国计算机等级考试(等考)指定教材

  全国计算机等级考试学习视频

  全国计算机等级考试网上辅导招生

  全国计算机等级考试时间及科目

  百考试题教育全国计算机等级考试在线测试平台

  全国计算机等级考试资料下载

  全国计算机等级考试论坛

  如何应付二级考试中的公共基础知识

  全国计算机等级考试上机考试应试技巧

  ByteArrayOutputStream out = new ByteArrayOutputStream(4096).
  byte[] tmp = new byte[4096].
  int n.
  while ((n = in.read(tmp)) != -1) {
  out.write(tmp, 0, n).
  out.flush().
  }
  in.close().
  out.close().
  data = out.toByteArray().
  }catch (Exception e) {
  e.printStackTrace().
  }
  }
  HttpConnection sc = (HttpConnection)Connector.open( url, Connector.READ_WRITE, true ).
  sc.setRequestMethod( HttpConnection.POST ).
  sc.setRequestProperty("Content-Type", "application/octet-stream").
  sc.setRequestProperty("Content-Length", String.valueOf(data.length)).
  OutputStream output = sc.openOutputStream().
  output.write(data).
  output.flush().
  output.close().
  }catch(Exception e){
  System.out.println("Error:" e).
  }
  }
  }
  服务器端:
  protected void doPost(HttpServletRequest req, HttpServletResponse resp)
  throws ServletException, IOException
  {
  InputStream in = req.getInputStream().
  byte[] tmp = new byte[4096].
  int size=0.
  File f = new File("c:\\",System.currentTimeMillis() ".png").
  DataOutputStream o = new DataOutputStream(new FileOutputStream(f)).
  int len=0.
  while((len = in.read(tmp))!= -1){
  o.write(tmp,0,len).
  o.flush().
  size =len.
  }
  o.close().
  }

相关文章


Java的强制类型转换计算机等级考试
javaToomanyopenfiles打开的文件过多计算机等级考试
自动配置JAVA环境变量计算机等级考试
struts配置文件重定向的问题计算机等级考试
J2ME文件上传实例(FileConnector链接文件系统,非RMS)计算机等级考试
使用Collator进行本地化语言的排序计算机等级考试
在Android(OPhone)模拟器中加载和使用SDCard卡计算机等级考试
JAVA性能优化—IBMJDKJVM参数设置计算机等级考试
JAVA序列化的两种方式计算机等级考试
澳大利亚华人论坛
考好网
日本华人论坛
华人移民留学论坛
英国华人论坛