BufferedReader 파일 내용 읽 기 중국어 코드 문제 및 해결 방안

문제 코드: 이 코드 를 사용 하여 파일 내용 을 읽 을 때 bufferedReader 는 시스템 의 기본 인 코딩 문자 집합 으로 파일 내용 을 가 져 옵 니 다.설정 한 인 코딩 문자 집합 이 시스템 의 기본 인 코딩 문자 집합 과 일치 하지 않 으 면 오류 가 발생 할 수 있 습 니 다.
File file = new File("D:/1.txt");
BufferedReader br = null;
try { 
	br = new BufferedReader(new FileReader(file));
	String tmpStr = null;
	while ((tmpStr=br.readLine())!=null) {
    	byte[] tmpByte = tmpStr.getBytes(Charset.forName("GBK"));
		String name = new String(tmpByte,0,10,Charset.forName("GBK"));
		String birthday = new String(tmpByte,10, 8,Charset.forName("GBK"));
		String sex = new String(tmpByte,18, 1,Charset.forName("GBK"));
		System.out.println(name+";"+birthday+";"+sex);
	}
} catch (Exception e) {
	e.printStackTrace();
}finally {
	if(br!=null){
		try {
			br.close();
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}

수 정 된 코드: 파일 흐름 을 가 져 올 때 파일 의 인 코딩 문자 집합 을 설정 해 야 분석 할 때 정상적으로 해석 할 수 있 습 니 다.
    	File file = new File("D:/1.txt");
    	BufferedReader br = null;
    	try {
    		br = new BufferedReader(new InputStreamReader(new FileInputStream(file),Charset.forName("GBK")));
    		String tmpStr = null;
        	while ((tmpStr=br.readLine())!=null) {
        		byte[] tmpByte = tmpStr.getBytes(Charset.forName("GBK"));
    			String name = new String(tmpByte,0,10,Charset.forName("GBK"));
    			String birthday = new String(tmpByte,10, 8,Charset.forName("GBK"));
    			String sex = new String(tmpByte,18, 1,Charset.forName("GBK"));
    			System.out.println(name+";"+birthday+";"+sex);
    		}
		} catch (Exception e) {
			e.printStackTrace();
		}finally {
			if(br!=null){
				try {
					br.close();
				} catch (IOException e) {
					e.printStackTrace();
				}
			}
		}

좋은 웹페이지 즐겨찾기