fwq
2022-06-01 a99c1c5221e1e00979dd42b96a4fd2046b9dec98
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
package com.hx.util;
 
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.UnsupportedEncodingException;
 
public class StreamUtils {
 
    final static int BUFFER_SIZE = 4096;
    /**
     * ��InputStreamת����String
     * 
     * @param in
     *            InputStream
     * @return String
     * @throws Exception
     * 
     */
    public static String InputStreamTOString(InputStream in) {
 
        ByteArrayOutputStream outStream = new ByteArrayOutputStream();
        byte[] data = new byte[BUFFER_SIZE];
        String string = null;
        int count = 0;
        try {
            while ((count = in.read(data, 0, BUFFER_SIZE)) != -1)
                outStream.write(data, 0, count);
        } catch (IOException e) {
            e.printStackTrace();
        }
 
        data = null;
        try {
            string = new String(outStream.toByteArray(), "UTF-8");
        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        }
        return string;
    }
 
    /**
     * ��InputStreamת����ij���ַ�����String
     * 
     * @param in
     * @param encoding
     * @return
     * @throws Exception
     */
    public static String InputStreamTOString(InputStream in, String encoding) {
        String string = null;
        ByteArrayOutputStream outStream = new ByteArrayOutputStream();
        byte[] data = new byte[BUFFER_SIZE];
        int count = -1;
        try {
            while ((count = in.read(data, 0, BUFFER_SIZE)) != -1)
                outStream.write(data, 0, count);
        } catch (IOException e) {
            e.printStackTrace();
        }
 
        data = null;
        try {
            string = new String(outStream.toByteArray(), encoding);
        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        }
        return string;
    }
 
    /**
     * ��Stringת����InputStream
     * 
     * @param in
     * @return
     * @throws Exception
     */
    public static InputStream StringTOInputStream(String in) throws Exception {
 
        ByteArrayInputStream is = new ByteArrayInputStream(in.getBytes("UTF-8"));
        return is;
    }
 
    /**
     * ��Stringת����InputStream
     * 
     * @param in
     * @return
     * @throws Exception
     */
    public static byte[] StringTObyte(String in) {
        byte[] bytes = null;
        try {
            bytes = InputStreamTOByte(StringTOInputStream(in));
        } catch (IOException e) {
        } catch (Exception e) {
            e.printStackTrace();
        }
        return bytes;
    }
 
    /**
     * ��InputStreamת����byte����
     * 
     * @param in
     *            InputStream
     * @return byte[]
     * @throws IOException
     */
    public static byte[] InputStreamTOByte(InputStream in) throws IOException {
 
        ByteArrayOutputStream outStream = new ByteArrayOutputStream();
        byte[] data = new byte[BUFFER_SIZE];
        int count = -1;
        while ((count = in.read(data, 0, BUFFER_SIZE)) != -1)
            outStream.write(data, 0, count);
 
        data = null;
        return outStream.toByteArray();
    }
 
 
    /**
     * ��byte����ת����InputStream
     * 
     * @param in
     * @return
     * @throws Exception
     */
    public static InputStream byteTOInputStream(byte[] in) throws Exception {
 
        ByteArrayInputStream is = new ByteArrayInputStream(in);
        return is;
    }
 
    /**
     * ��byte����ת����String
     * 
     * @param in
     * @return
     * @throws Exception
     */
    public static String byteTOString(byte[] in) {
 
        InputStream is = null;
        try {
            is = byteTOInputStream(in);
        } catch (Exception e) {
            e.printStackTrace();
        }
        return InputStreamTOString(is, "UTF-8");
    }
    /**
     * ��byte����ת����String
     * 
     * @param in
     * @return
     * @throws Exception
     */
    public static String getString(String in) {
 
        String is = null;
        try {
            is = byteTOString(StringTObyte(in));
        } catch (Exception e) {
            e.printStackTrace();
        }
        return is;
    }
 
    // InputStream ת����byte[]
    public byte[] getBytes(InputStream is) throws IOException {
 
        ByteArrayOutputStream baos = new ByteArrayOutputStream();
        byte[] b = new byte[BUFFER_SIZE];
        int len = 0;
 
        while ((len = is.read(b, 0, BUFFER_SIZE)) != -1) {
            baos.write(b, 0, len);
        }
 
        baos.flush();
 
        byte[] bytes = baos.toByteArray();
 
        System.out.println(new String(bytes));
 
        return bytes;
    }
    /**
     * ����ļ�·�������ļ�����������
     * ���ֽ�Ϊ��λ���� unicode ��
     * @return
     */
    public static FileInputStream getFileInputStream(String filepath) {
        FileInputStream fileInputStream = null;
        try {
            fileInputStream = new FileInputStream(filepath);
        } catch (FileNotFoundException e) {
            System.out.print("������Ϣ:�ļ�������");
            e.printStackTrace();
        }
        return fileInputStream;
    }
    /**
     * ����ļ����󴴽��ļ�����������
     * ���ֽ�Ϊ��λ���� unicode ��
     * @return
     */
    public static FileInputStream getFileInputStream(File file) {
        FileInputStream fileInputStream = null;
        try {
            fileInputStream = new FileInputStream(file);
        } catch (FileNotFoundException e) {
            System.out.print("������Ϣ:�ļ�������");
            e.printStackTrace();
        }
        return fileInputStream;
    }
    /**
      * ����ļ����󴴽��ļ����������
     * ���ֽ�Ϊ��λ���� unicode ��
     * @param file
     * @param append true:�ļ���׷�ӷ�ʽ��,false:�򸲸�ԭ�ļ�������
     * @return
     */
    public static FileOutputStream getFileOutputStream(File file,boolean append) {
        FileOutputStream fileOutputStream = null;
        try {
            fileOutputStream = new FileOutputStream(file,append);
        } catch (FileNotFoundException e) {
            System.out.print("������Ϣ:�ļ�������");
            e.printStackTrace();
        }
        return fileOutputStream;
    }
    /**
     * ����ļ�·�������ļ����������
     * ���ֽ�Ϊ��λ���� unicode ��
     * @param append true:�ļ���׷�ӷ�ʽ��,false:�򸲸�ԭ�ļ�������
     * @return
     */
    public static FileOutputStream getFileOutputStream(String filepath,boolean append) {
        FileOutputStream fileOutputStream = null;
        try {
            fileOutputStream = new FileOutputStream(filepath,append);
        } catch (FileNotFoundException e) {
            System.out.print("������Ϣ:�ļ�������");
            e.printStackTrace();
        }
        return fileOutputStream;
    }
 
    public static File getFile(String filepath) {
        return new File(filepath);
    }
    public static ByteArrayOutputStream getByteArrayOutputStream() {
        return new ByteArrayOutputStream();
    }
 
}