博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
在j2me中读取txt文件数据
阅读量:4045 次
发布时间:2019-05-24

本文共 979 字,大约阅读时间需要 3 分钟。

private void read()

 {
  byte[] data = null;
  inputstream in=null;
  datainputstream dis = null;
  int count=0;//文本文件中字节的个数
  int highpostion=-1,lowpostion=-1;//分别代表一个数字的十位数字和各位数字。
  int num=0;//所得到的数字
  int numcount=0;
  try
  {   
   in=this.getclass().getresourceasstream("/help.txt");//将位于res目录下的help.txt中数字读出。
   dis = new datainputstream(in);
   dis.mark(0);
   while(true)
   {
    if(dis.read()!=-1)
    {
     count++;
    }
    else
    {
     break;
    }
   }
   dis.reset();
   data = new byte[count];
   for(int i=0;i<count;i++)
   {
    data[i]=dis.readbyte();
   }
   for(int i=0;i<data.length;i++)
   {
    if(data[i]!=44&&data[i]!=10&&data[i]!=13)
    {
     if(highpostion==-1)
     {
      highpostion=data[i]-48;
     }
     else
     {
      lowpostion=data[i]-48;
     }

 

    }

    else
    {
     if(data[i]==44)
     {
      numcount++;
      if(lowpostion!=-1&&highpostion!=-1)
      {
       num=highpostion*10+lowpostion;
      }
      else if(highpostion!=-1&&lowpostion==-1)
      {
       num=highpostion;
      }
      highpostion=-1;
      lowpostion=-1;
      system.out.println("/t"+i+"/t/t"+num+"/t/t"+numcount);
     }
    }
   
    
   }
  }catch(exception e)
  {
   e.printstacktrace();
  }
  finally
  {
   in = null;
  }
 } 

转载地址:http://fdedi.baihongyu.com/

你可能感兴趣的文章
Linux tcpdump命令详解
查看>>
mysql日期格式化
查看>>
MySQL数据库中的Date,DateTime,TimeStamp和Time类型
查看>>
MySQL索引
查看>>
mongodb 的重启
查看>>
Mongoose - 让NodeJS更容易操作Mongodb数据库
查看>>
module.exports与exports的区别
查看>>
Nodejs开发框架Express3.0开发手记
查看>>
开发者必须知道的HTML5十五大新特性
查看>>
linux下IPTABLES配置详解
查看>>
Mysql错误:Table 'xxx'is marked as crashed and should be repaired
查看>>
memcached集群负载均衡
查看>>
memcached集群架构方面的问题
查看>>
理解 Node.js 里的 process.nextTick()
查看>>
如何从Eclipse导入github上的项目源码
查看>>
Node.js软肋之CPU密集型任务
查看>>
Linux pmap命令
查看>>
git回到上一版本命令
查看>>
Redis-benchmark使用总结
查看>>
apache+tomcat 均衡负载与集群中的session共享
查看>>