public static void main(String[] args) throws IOException, SQLException, ClassNotFoundException {
FileInputStream fis=new FileInputStream("F:\\JAVA\\JDBC\\src\\JDBC\\person.txt");
InputStreamReader isr=new InputStreamReader(fis);
BufferedReader br=new BufferedReader(isr);
String ss;
String s[];
boolean i=false;
Connection cc=ConnectionFactory.getConnection();
Statement stmt = cc.createStatement();
while(br.read()!=-1){
ss=br.readLine();
System.out.println(ss);
}
}
为什么打印出来每行开头都少一个字符啊;