设为首页收藏本站

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

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 4744|回复: 1

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

[复制链接]
发表于 2010-3-2 17:00:18 | 显示全部楼层 |阅读模式
package business;& P7 Z. X) ]8 [0 ?
import java.io.BufferedReader;
3 E) [5 c/ I* p- ~: a. N/ n4 eimport java.io.FileInputStream;7 f, Y8 G3 R5 }% i" W- K9 L
import java.io.FileNotFoundException;" G4 K% Z  F) ?6 H, t: J$ _% q
import java.io.IOException;
; j3 k: T: ~: h8 \5 Qimport java.io.InputStreamReader;
" y( L4 G) }0 k0 M7 I* pimport java.io.UnsupportedEncodingException;
$ u4 G/ Y3 J0 `/ b$ u" Gimport java.util.StringTokenizer;
, S. l3 S3 g6 Y3 R3 I! Epublic class TXTReader {
# Y! D) e1 K. W+ S protected String matrix[][];
, ?4 ]' o/ U4 @( h9 Z! l0 r) s protected int xSize;6 ^8 {. |1 J7 U3 i& I! v, A) U
protected int ySize;
; o& g& ^, _; } public TXTReader(String sugarFile) {0 U& ~7 x5 x* v$ [! ?
  java.io.InputStream stream = null;
0 E' O: n3 A6 E1 m' Q* d: r  try {
0 _$ f0 g% _; q   stream = new FileInputStream(sugarFile);; z0 ^2 h  c  |8 W# I' }
  } catch (FileNotFoundException e) {
( F3 F5 R* i' a4 q   e.printStackTrace();7 J/ [( \8 B5 o. i
  }
$ F5 O5 u6 W- W& N- [5 D) n! Y  BufferedReader in = new BufferedReader(new InputStreamReader(stream));$ U2 d% i6 v$ o1 P9 k# q4 `7 l
  init(in);
0 m2 R$ \  h- o  g2 R& q2 k }$ o5 g5 N9 `: g+ ^# s
private void init(BufferedReader in) {% |1 z3 U! {, v$ @+ i  X' _
  try {
) ]$ R  _* `; I8 X( `* T4 Z   String str = in.readLine();' j' c$ @9 H! u0 F3 H4 ~9 q
   if (!str.equals("b2")) {
, R# _, q7 U' S6 ]    throw new UnsupportedEncodingException(
3 a% T) U4 V# U, A) u$ t      "File is not in TXT ascii format");/ f5 T/ O# f- Y9 m9 m, y1 P; n
   }
) l9 C$ F+ I4 a   str = in.readLine();" B& A+ }4 I) @5 Y6 D/ P3 i
   String tem[] = str.split("[\\t\\s]+");8 J% {! r# A  n" h' N$ b9 I
   xSize = Integer.valueOf(tem[0]).intValue();
2 P' t3 n2 v/ t* h   ySize = Integer.valueOf(tem[1]).intValue();
% R% ]3 q, J- b* ?   matrix = new String[xSize][ySize];3 Z' _* e& o2 I# K2 w. ]! X, p
   int i = 0;8 I$ O% |+ Y+ g+ `- E9 t! O
   str = "";) c: J1 J+ d$ Q; }4 r" [
   String line = in.readLine();# S5 t9 L3 m; |+ e8 \" ]- U
   while (line != null) {5 d! r! O+ E9 m! K$ M
    String temp[] = line.split("[\\t\\s]+");
# g3 ?4 _7 u! N" m: `4 f  \8 R  `3 g    line = in.readLine();
& H6 b6 _6 I7 s4 P7 O) q    for (int j = 0; j < ySize; j++) {
, W: S! z0 T$ ?% o     matrix[i][j] = temp[j];
% u9 `: D6 @  `$ A9 ]5 e    }
) z9 }3 j8 q* _, e2 z8 r+ Q    i++;1 \& b5 Z( W6 y6 Q& _
   }
( W* H" E$ t$ F# i& y   in.close();
9 X' ?. z, M4 v2 N$ w4 p2 t  } catch (IOException ex) {; I8 d. P) f2 \8 v8 ^
   System.out.println("Error Reading file");
. H. ~; S0 E7 e; c$ s# j+ [   ex.printStackTrace();& R$ t( ^+ y* K6 q4 W
   System.exit(0);
$ H7 k! I; Y- t# B  }
0 @4 ^- i/ d) t- J/ z }. H4 D9 }9 G! N
public String[][] getMatrix() {0 W1 d8 d: V* {% V) T
  return matrix;! i' ^3 c- ^: C% }4 ~
}
$ }; h5 v" Y$ K. h, ~$ ?}
发表于 2010-8-31 08:40:14 | 显示全部楼层
请问楼主,有没有能把repast中的一个变量写入到一个txt文档的程序呢?
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2025-4-4 09:12 , Processed in 0.015247 second(s), 15 queries .

Powered by Discuz! X3.4 Licensed

© 2001-2017 Comsenz Inc.

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