当前位置: 主页 > JAVA语言

java配置文件乱码-java导出csv文件乱码

发布时间:2023-06-02 11:05   浏览次数:次   作者:佚名

读取文件流时,常常会遇到乱码的现象,形成乱码的缘由固然不多是一个,这里主要介绍由于文件编码格式而致使的乱码的问题。首先,明确一点,文本文件与二进制文件的概念与差别。java

文本文件是基于字符编码的文件,常见的编码有ASCII编码,UNICODE编码、ANSI编码等等。二进制文件是基于值编码的文件,你能够根据具体应用,指定某个值是什么意思(这样一个过程,能够看做是自定义编码。)c++

所以能够看出文本文件基本上是定长编码的(也有非定长的编码如UTF-8)。而二进制文件可当作是变长编码的,由于是值编码嘛java配置文件乱码,多少个比特表明一个值,彻底由你决定。数组

对于二进制文件,是千万不能使用字符串的,由于字符串默认初始化时会使用系统默认编码,然而,二进制文件由于自定义编码天然与固定格式的编码会有所冲突,因此对于二进制的文件只能采用字节流读取、操做、写入。

安全

对于文本文件,由于编码固定,因此只要在读取文件以前,采用文件自身的编码格式解析文件,而后获取字节,再而后,经过指定格式初始化字符串java配置文件乱码,那么获得的文本是不会乱码的。虽然,二进制文件也能够获取到它的文本编码格式,可是那是不许确的,因此不能同日而语。

app

具体操做以下:编码

1)获取文本文件的格式操作系统

public static String getFileEncode(String path) {
		String charset ="asci";
        byte[] first3Bytes = new byte[3];
        BufferedInputStream bis = null;
        try {
            boolean checked = false;
            bis = new BufferedInputStream(new FileInputStream(path));
            bis.mark(0);
            int read = bis.read(first3Bytes, 0, 3);
            if (read == -1)
                return charset;
            if (first3Bytes[0] == (byte) 0xFF && first3Bytes[1] == (byte) 0xFE) {
                charset = "Unicode";//UTF-16LE
                checked = true;
            } else if (first3Bytes[0] == (byte) 0xFE && first3Bytes[1] == (byte) 0xFF) {
                charset = "Unicode";//UTF-16BE
                checked = true;
            } else if (first3Bytes[0] == (byte) 0xEF && first3Bytes[1] == (byte) 0xBB && first3Bytes[2] == (byte) 0xBF) {
                charset = "UTF8";
                checked = true;
            }
            bis.reset();
            if (!checked) {
                int len = 0;
                int loc = 0;
                while ((read = bis.read()) != -1) {
                    loc++;
                    if (read >= 0xF0)
                        break;
                    if (0x80 <= read && read <= 0xBF) //单独出现BF如下的,也算是GBK
                        break;
                    if (0xC0 <= read && read <= 0xDF) {
                        read = bis.read();
                        if (0x80 <= read && read <= 0xBF) 
                        //双字节 (0xC0 - 0xDF) (0x80 - 0xBF),也可能在GB编码内
                            continue;
                        else
                            break;
                    } else if (0xE0 <= read && read <= 0xEF) { //也有可能出错,可是概率较小
                        read = bis.read();
                        if (0x80 <= read && read <= 0xBF) {
                            read = bis.read();
                            if (0x80 <= read && read <= 0xBF) {
                                charset = "UTF-8";
                                break;
                            } else
                                break;
                        } else
                            break;
                    }
                }
                //TextLogger.getLogger().info(loc + " " + Integer.toHexString(read));
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            if (bis != null) {
                try {
                    bis.close();
                } catch (IOException ex) {
                }
            }
        }
        return charset;
	}
	private static String getEncode(int flag1, int flag2, int flag3) {
		String encode="";
		// txt文件的开头会多出几个字节,分别是FF、FE(Unicode),
		// FE、FF(Unicode big endian),EF、BB、BF(UTF-8)
		if (flag1 == 255 && flag2 == 254) {
			encode="Unicode";
		}
		else if (flag1 == 254 && flag2 == 255) {
			encode="UTF-16";
		}
		else if (flag1 == 239 && flag2 == 187 && flag3 == 191) {
			encode="UTF8";
		}
		else {
			encode="asci";// ASCII码
		}
		return encode;
	}

2)经过文件的编码格式读取文件流code

/**
	 * 经过路径获取文件的内容,这个方法由于用到了字符串做为载体,为了正确读取文件(不乱码),只能读取文本文件,安全方法!
	 */
	public static String readFile(String path){
		String data = null;
		// 判断文件是否存在
		File file = new File(path);
		if(!file.exists()){
			return data;
		}
		// 获取文件编码格式
		String code = FileEncode.getFileEncode(path);
		InputStreamReader isr = null;
		try{
			// 根据编码格式解析文件
			if("asci".equals(code)){
				// 这里采用GBK编码,而不用环境编码格式,由于环境默认编码不等于操做系统编码 
				// code = System.getProperty("file.encoding");
				code = "GBK";
			}
			isr = new InputStreamReader(new FileInputStream(file),code);
			// 读取文件内容
			int length = -1 ;
			char[] buffer = new char[1024];
			StringBuffer sb = new StringBuffer();
			while((length = isr.read(buffer, 0, 1024) ) != -1){
				sb.append(buffer,0,length);
			}
			data = new String(sb);
		}catch(Exception e){
			e.printStackTrace();
			log.info("getFile IO Exception:"+e.getMessage());
		}finally{
			try {
				if(isr != null){
					isr.close();
				}
			} catch (IOException e) {
				e.printStackTrace();
				log.info("getFile IO Exception:"+e.getMessage());
			}
		}
		return data;
	}

3)经过文件指定的格式写入文件ci

/**
	 * 按照指定的路径和编码格式保存文件内容,这个方法由于用到了字符串做为载体,为了正确写入文件(不乱码),只能写入文本内容,安全方法
	 * 
	 * @param data
	 *          将要写入到文件中的字节数据
	 * @param path
	 *          文件路径,包含文件名
	 * @return boolean 
	 * 			当写入完毕时返回true;
	 */
	public static boolean writeFile(byte data[], String path , String code){
		boolean flag = true;
		OutputStreamWriter osw = null;
		try{
			File file = new File(path);
			if(!file.exists()){
				file = new File(file.getParent());
				if(!file.exists()){
					file.mkdirs();
				}
			}
			if("asci".equals(code)){
				code = "GBK";
			}
			osw = new OutputStreamWriter(new FileOutputStream(path),code);
			osw.write(new String(data,code));
			osw.flush();
		}catch(Exception e){
			e.printStackTrace();
			log.info("toFile IO Exception:"+e.getMessage());
			flag = false;
		}finally{
			try{
				if(osw != null){
					osw.close();
				}
			}catch(IOException e){
				e.printStackTrace();
				log.info("toFile IO Exception:"+e.getMessage());
				flag = false;
			}
		}
		return flag;
	}

4)对于二进制文件并且内容不多的,例如Word文档等,可使用以下方式读取、写入文件文档

/**
	 * 从指定路径读取文件到字节数组中,对于一些非文本格式的内容能够选用这个方法
	 * 			457364578634785634534
	 * @param path
	 *          文件路径,包含文件名
	 * @return byte[]
	 * 			 文件字节数组
	 *            
	 */
	public static byte[] getFile(String path) throws IOException {
		FileInputStream stream=new FileInputStream(path);
		int size=stream.available();
		byte data[]=new byte[size];
		stream.read(data);
		stream.close();
		stream=null;
		return data;
	}
	/**
	 * 把字节内容写入到对应的文件,对于一些非文本的文件能够采用这个方法。
	 * @param data
	 *            将要写入到文件中的字节数据
	 * @param path
	 *            文件路径,包含文件名
	 * @return boolean isOK 当写入完毕时返回true;
	 * @throws Exception
	 */
	public static boolean toFile(byte data[], String path) throws Exception {
		FileOutputStream out=new FileOutputStream(path);
		out.write(data);
		out.flush();
		out.close();
		out=null;
		return true;
	}