• Java 输入流读取文本文件换行符问题


    一问题

    在学习流编程的过程中,我遇到了一下问题。首先来看一下我写的java源程序:

    package StreamLearn;
    
    import java.io.*;
    
    public class TestFileInputStream {
    	public static void main(String[] args) {
    		int count=0;
    		FileInputStream in=null;
    		try{
    			in =new FileInputStream("c:\a.java");
    		}catch(FileNotFoundException e)
    		{
    			System.out.println("can not find it");
    			System.exit(1);
    		}
    	    
    	
    		long num=0;
    		try{
    		
    			while((count=in.read())!=-1){
    				System.out.print((char)count);
    				//System.out.println(count);
    				num++;
    			}	
    		   }catch(IOException e)
    		   {
    			   e.printStackTrace();
    		   }
    		   System.out.println("
    字符个数:"+num);
    	  }
        
    	  
    }
    

      该代码功能十分简单,从a.java文件中读取字符,并统计个数。让我们来看一下a.java文件中的具体内容:


     

    程序的运行结果如下:

     

    123

    456

     

    字符个数:10

    问题出现,本来只有6个字符为什么会变为8个字符呢?让我们对源代码进行改进:

    package StreamLearn;
    
    import java.io.*;
    
    public class TestFileInputStream {
    	public static void main(String[] args) {
    		int count=0;
    		FileInputStream in=null;
    		try{
    			in =new FileInputStream("c:\a.java");
    		}catch(FileNotFoundException e)
    		{
    			System.out.println("can not find it");
    			System.exit(1);
    		}
    	    
    	
    		long num=0;
    		try{
    		
    			while((count=in.read())!=-1){
    				//System.out.print((char)count);
    				System.out.println(count);
    				num++;
    			}	
    		   }catch(IOException e)
    		   {
    			   e.printStackTrace();
    		   }
    		   System.out.println("
    字符个数:"+num);
    	  }
        
    	  
    }
    

    运行结果如下:

    49
    50
    51
    13
    10
    52
    53
    54
    字符个数:8

    查询ASCII表,得知1对应ASCII值为49,一直到6为54。多出来的字符对应的ASCII值为13和10,其中13对应为归位符,10为换行符。有关归位与换行的区别请参考我的博客:

    http://blog.csdn.net/leixingbang1989/article/details/12056193,在此不多介绍。

    总结:

    在文件中,换行需要占两个字节,分别对应‘/r’‘/n’,在对文件字符进行统计与编码时,应特别注重该问题。

  • 相关阅读:
    mysql 从5.1升级到5.5.33 后 innodb 表出错 及 innodb表修复
    (未解决)在JSTL中,session 和 sessionScope 有什么区别 ??
    ubuntu 12.04安装redis2.6.16
    SOA,不看你永远不知道的事
    Failed to retrieve procctx from ht. constr
    CUSPARSE 第三章 CUSPARAE索引和数据格式
    yii框架网址解析问题
    以图搜图相关资料
    JMeter工具的使用-ForEach
    [cocos2d-x]针对不同的设备,选取不同的自适应图片
  • 原文地址:https://www.cnblogs.com/james1207/p/3348087.html
Copyright © 2020-2023  润新知