1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
|
package com.nis.nmsclient.util;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.io.Reader;
import java.nio.charset.Charset;
import java.util.ArrayList;
import java.util.List;
import org.apache.log4j.Logger;
import com.Ostermiller.util.ExcelCSVParser;
import com.Ostermiller.util.ExcelCSVPrinter;
import com.nis.nmsclient.util.io.UnicodeReader;
public class FileWrUtil {
static Logger logger = Logger.getLogger(FileWrUtil.class);
/**
* 根据文件编码添加文件内容前缀
* @param file
* @param encoding
*/
protected static boolean addFileHeadByEncoding(File file, String encoding) throws Exception{
FileOutputStream fos = null;
boolean flag = false;
try{
byte[] head = null;
if("UTF-8".equalsIgnoreCase(encoding)){
head = new byte[]{(byte)0xEF,(byte)0xBB,(byte)0xBF};
}else if("UTF-16BE".equalsIgnoreCase(encoding)){
head = new byte[]{(byte)0xFE,(byte)0xFF};
}else if("UTF-16LE".equalsIgnoreCase(encoding)){
head = new byte[]{(byte)0xFF,(byte)0xFE};
}else if("UTF-32BE".equalsIgnoreCase(encoding)){
head = new byte[]{(byte)0x00,(byte)0x00,(byte)0xFE,(byte)0xFF};
}else if("UTF-32LE".equalsIgnoreCase(encoding)){
head = new byte[]{(byte)0xFF,(byte)0xFF,(byte)0x00,(byte)0x00};
}
if(head!=null){
fos = new FileOutputStream(file);
fos.write(head);
fos.flush();
flag = true;
}
} catch (IOException e) {
throw e;
}finally {
if(fos!=null){
try {
fos.close();
} catch (IOException e) {
}
}
}
return flag;
}
/**
* 写入文件, .cfg\.ini\.txt
*
*/
public static boolean cfgFilePrinter(File file, String charset, String[] values) throws Exception{
OutputStreamWriter fos = null;
try {
if(addFileHeadByEncoding(file, charset)){
fos = new OutputStreamWriter(
new FileOutputStream(file,true), charset);
}else{
fos = new OutputStreamWriter(
new FileOutputStream(file), charset);
}
for(String val : values){
fos.write(val);
fos.write("\n");
}
fos.flush();
} catch (IOException e) {
throw e;
}finally {
if(fos!=null){
try {
fos.close();
} catch (IOException e) {
}
}
}
return true;
}
/**
* 追加内容到文件, .cfg\.ini\.txt
*
*/
public static boolean cfgFileAppender(File file, String charset, String[] values) throws Exception{
OutputStreamWriter fos = null;
try {
fos = new OutputStreamWriter(
new FileOutputStream(file, true), charset);
for(String val : values){
fos.write(val);
fos.write("\n");
}
fos.flush();
} catch (IOException e) {
throw e;
}finally {
if(fos!=null){
try {
fos.close();
} catch (IOException e) {
}
}
}
return true;
}
/**
* 根据文件的编码读取文件内容, .cfg\.ini\.txt
*
*/
public static String[] cfgFileReader(File file) throws Exception{
BufferedReader br = null;
ArrayList<String> list = new ArrayList<String>();
try {
br = new BufferedReader(new UnicodeReader(new FileInputStream(
file), Charset.defaultCharset().name()));
String str = null;
while((str=br.readLine())!=null){
list.add(str);
}
} catch (IOException e) {
throw e;
}finally {
if(br!=null){
try {
br.close();
} catch (IOException e) {
}
}
}
String[] values = new String[list.size()];
return list.toArray(values);
}
/**
* 写CSV文件,只写入一行
*
*/
public static boolean csvFilePrinter(File file, String charset, String[] values) throws Exception{
OutputStreamWriter fos = null;
try {
fos = new OutputStreamWriter(
new FileOutputStream(file), charset);
ExcelCSVPrinter ecsvp = new ExcelCSVPrinter(fos);
ecsvp.changeDelimiter(',');
ecsvp.setAutoFlush(true);
ecsvp.writeln(values);
fos.flush();
} catch (IOException e) {
throw e;
}finally {
if(fos!=null){
try {
fos.close();
} catch (IOException e) {
}
}
}
return true;
}
/**
* 写CSV文件,写入多行
*
*/
public static boolean csvFilePrinter(File file, String charset, List<String[]> values) throws Exception{
OutputStreamWriter fos = null;
try {
fos = new OutputStreamWriter(
new FileOutputStream(file), charset);
ExcelCSVPrinter ecsvp = new ExcelCSVPrinter(fos);
ecsvp.changeDelimiter(',');
ecsvp.setAutoFlush(true);
for(String[] val : values){
ecsvp.writeln(val);
}
fos.flush();
} catch (IOException e) {
throw e;
}finally {
if(fos!=null){
try {
fos.close();
} catch (IOException e) {
}
}
}
return true;
}
/**
* 解析CSV文件中的指定行
*
*/
public static String[] csvFileParser(File file, String charset, int rowNum) throws Exception{
Reader in = null;
String[] currLine = null;
try {
//创建解析信息流
in = new InputStreamReader(new FileInputStream(file),charset);
ExcelCSVParser csvParser = new ExcelCSVParser(in);
while((currLine=csvParser.getLine())!=null){
if(rowNum != csvParser.getLastLineNumber()){
currLine = null;
}
}
} catch (IOException e) {
throw e;
}finally {
if(in!=null){
try {
in.close();
} catch (IOException e) {
}
}
}
return currLine;
}
/**
* 解析CSV文件的所有行
*
*/
public static List<String[]> csvFileParser(File file, String charset) throws Exception{
Reader in = null;
List<String[]> allLineList = new ArrayList<String[]>();
try {
//创建解析信息流
in = new InputStreamReader(new FileInputStream(file),charset);
ExcelCSVParser csvParser = new ExcelCSVParser(in);
String[] currLine = null;
while((currLine=csvParser.getLine())!=null){
allLineList.add(currLine);
}
} catch (IOException e) {
throw e;
}finally {
if(in!=null){
try {
in.close();
} catch (IOException e) {
}
}
}
return allLineList;
}
}
|