设为首页收藏本站

最大的系统仿真与系统优化公益交流社区

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 5933|回复: 1

[原创] 发一个读取TXT文件数据的程序代码

[复制链接]
发表于 2010-3-2 17:00:18 | 显示全部楼层 |阅读模式
package business;- P5 S. v7 \, B" I% X
import java.io.BufferedReader;+ W6 F" K: o% L( y' y/ O2 j: z
import java.io.FileInputStream;
! _( e1 f4 H- ~" m- cimport java.io.FileNotFoundException;
9 n  a/ t" E8 G% E& oimport java.io.IOException;* a# n$ k6 Z. M) ~
import java.io.InputStreamReader;. V( g8 K+ ?2 M+ w" ~* \# K
import java.io.UnsupportedEncodingException;
* U1 A+ K9 L* n7 c5 gimport java.util.StringTokenizer;
6 ?( j7 ]0 \" r1 P7 c/ npublic class TXTReader {
9 {/ b5 Q9 Z3 g  d8 X protected String matrix[][];
+ j( n! z) h+ E& W4 ?% G protected int xSize;9 l8 |: C" g- S; n( d+ f
protected int ySize;
) e- W$ O: D% S8 q public TXTReader(String sugarFile) {
0 C& Z( t3 b* U1 p& F2 r  java.io.InputStream stream = null;
  ~. b1 Q' D0 |  try {& ], J2 d8 q, l7 K) C, h( o
   stream = new FileInputStream(sugarFile);
* B; ~' Z/ Q+ ?' m% z  } catch (FileNotFoundException e) {& Y6 w1 V7 d" B4 H8 N; d& q
   e.printStackTrace();
  Q( t, `" B) V7 X# z5 m" p5 Y  }* H3 r2 q+ ?: s" t
  BufferedReader in = new BufferedReader(new InputStreamReader(stream));
$ B- Z/ I/ J7 e! G" e3 v/ O' h  init(in);9 x+ j* C+ j# }- T5 `/ ~; e
}5 i$ r8 o) Y3 \: t. h; ~& M
private void init(BufferedReader in) {0 }9 W, X! d' K" }1 X
  try {
/ c6 p! f# W$ E) Y" a' e   String str = in.readLine();
( S; j; s0 ]4 r" t, g, T! a   if (!str.equals("b2")) {
! b3 X& H( u% c; C0 q3 W1 H    throw new UnsupportedEncodingException(1 {+ G( b0 P- H$ ?
      "File is not in TXT ascii format");3 H9 U7 W0 W' j+ |2 b7 @
   }
4 A6 s' F/ C4 z( I( R   str = in.readLine();
( V' ]" v& b! {. Z; u$ f4 z$ G0 {   String tem[] = str.split("[\\t\\s]+");+ _, o; F* {) X+ B
   xSize = Integer.valueOf(tem[0]).intValue();9 @! Y/ H+ \2 S8 ^" D$ I8 p2 M
   ySize = Integer.valueOf(tem[1]).intValue();8 `: A0 N5 f4 e% i8 }3 p, j& v
   matrix = new String[xSize][ySize];
7 A5 r1 r  d2 Z* j   int i = 0;: H9 p7 h. F' E6 o
   str = "";
1 J: \3 x6 u" a   String line = in.readLine();
2 Y# f; Y! E$ }: j& @: e3 U# j   while (line != null) {
6 ?+ T7 n, A, z2 M    String temp[] = line.split("[\\t\\s]+");& M: h! k/ [6 L1 @+ b! ]" g1 A
    line = in.readLine();& N5 Z: W9 k( w
    for (int j = 0; j < ySize; j++) {
2 a2 H+ S$ w' [( J! G& u$ C     matrix[i][j] = temp[j];2 I* Z' N% N5 l. A1 G# C
    }
. N# M" o+ Q* h" u    i++;
: h. K2 c4 i2 [6 v   }
# _5 D" ^4 W6 q5 g% z! L3 v   in.close();
* i& g2 s/ e- `: B  } catch (IOException ex) {2 H4 V1 e; |. _& J" t
   System.out.println("Error Reading file");
$ V4 _, b7 r6 a+ U7 v0 M6 j   ex.printStackTrace();( }/ b* V) d0 B; s( i! |
   System.exit(0);
( k3 A0 @, F, z' @, i% _+ L  }- G* W- W9 Q& d( ~  c
}& c* k3 o) p6 b2 U4 C
public String[][] getMatrix() {
6 {. ^1 N) _# `/ L  return matrix;
/ O+ f: Z% O( q6 v. C }
6 p1 z* P8 I* p0 ?}
发表于 2010-8-31 08:40:14 | 显示全部楼层
请问楼主,有没有能把repast中的一个变量写入到一个txt文档的程序呢?
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|Archiver|手机版|SimulWay 道于仿真   

GMT+8, 2025-11-30 10:36 , Processed in 0.021307 second(s), 15 queries .

Powered by Discuz! X3.4 Licensed

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表