欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

java中的Io(input与output)操作总结(三)

程序员文章站 2023-11-05 23:28:16
说实话,其实我并不是很喜欢java这门语言,尽管它很强大,有很多现成的api可以调用 但我总感觉它把简单的事情弄得太过复杂,甚至有时候会让人迷失 弄不清到底是为了写出东西,...
说实话,其实我并不是很喜欢java这门语言,尽管它很强大,有很多现成的api可以调用
但我总感觉它把简单的事情弄得太过复杂,甚至有时候会让人迷失
弄不清到底是为了写出东西,还是为了语言本身
我学习的第一门编程语言是python,虽然学的不深
但是它的简单优雅至今令人难忘(呃,其实也就两年前的事……)
我接触的第二门语言是c,它给我的感觉是一种纯粹,一种高效的灵活
而不是类似java,写一堆含糊的代码来实现一个小小的功能
坦白讲,如果一个人在学习自己不感兴趣的东西,那会很累
支撑我的是,我对移动开发有着异常的向往,对android也相当喜欢,无奈开发android的主要语言便是java
虽然已经学了半年,但是我却到现在都不能解释神马企业级开发到底有哪些东西
我想要的,无非就是把编程当作生活中的一种调情,如果想要某个功能,就去实现,用尽可能简单的方式
甚至我的猜想是,等到日后发展,编程这门技术如同每个人使用office一般的时候
那么作为程序员的你们是该有多艰辛?
要知道,一个人将自己内心的利益盖过真正的想法,这是相当可怕的……
因此,每个人都应该用自己喜欢的,觉得高效的方式,做自己最想要做的
好了,说了那么多,我的目的其实只有一个
难道我会告诉你,我根本就搞不懂,也不想搞懂java那些复杂的垃圾语法么?
我只用那些最简单最好用的东西……
java以前的那些io写法我就懒得记录了,主要是system类对io的支持
如果你觉得我写的代码不够深沉,那你就喷吧,可喷完之后你还能干些什么呢?

现在,步入正题……
这一节我们来讲scanner类和printwriter类的用法

scanner类
实例1:从键盘读取
复制代码 代码如下:

import java.util.scanner;
public class demo {
public static void main(string[] args ) {
scanner input = new scanner(system.in);
system.out.println("请输出一个整数:");
int i = input.nextint();
system.out.println("你输入的整数是:" + i);
}
}

以上演示的只是读取一个整数,当然还有读取浮点数和其他数据类型的方法,比较简单,查看api即可

java中的Io(input与output)操作总结(三) 
实例2:从字符串读取

复制代码 代码如下:

import java.util.scanner;
public class demo {
public static void main(string[] args ) {
//这里的\r\n是换行符,linux下其实只用\n即可
scanner input = new scanner("hello\r\nworld\r\n");
//循环读取,hasnext()方法和集合框架里面的一样使
while(input.hasnext()) {
//每次读取一行,别的读取方法见api,比较简单
string s = input.nextline();
system.out.println(s);
}
}
}

java中的Io(input与output)操作总结(三)
实例3:从文件读取

复制代码 代码如下:

import java.io.file;
import java.io.filenotfoundexception;
import java.util.scanner;
public class demo {
public static void main(string[] args ) {
string path = file.separator + "home" + file.separator + "siu" +
file.separator + "work" + file.separator + "demo.txt";
file f = new file(path);
scanner input = null;
try {
//从文件构造scanner对象,有可能产生异常
input = new scanner(f);
while(input.hasnext()) {
string s = input.nextline();
system.out.println(s);
}
} catch (filenotfoundexception e) {
e.printstacktrace();
} finally {
input.close();
}
}
}

这里要注意的是,从文件创建scanner对象得先要有file对象,当然你可以使用匿名对象来创建
此外,还需捕捉异常和关闭文件流

java中的Io(input与output)操作总结(三)
printwriter类
实例4:向文件写入内容

复制代码 代码如下:

import java.io.file;
import java.io.filenotfoundexception;
import java.io.printwriter;
public class demo {
public static void main(string[] args) {
string path = file.separator + "home" + file.separator + "siu" +
file.separator + "work" + file.separator + "demo.txt";
//创建文件对象
file file = new file(path);
printwriter p = null;
try {
//此处构造函数还可以传其他对象,具体参考api文档
p = new printwriter(file);
//向文件写入一行,此外还有print()和printf()方法
p.println("如果有一天我回到从前");
p.println("回到最原始的我");
p.println("你是否会觉得我不错");
//刷新流
p.flush();
} catch (filenotfoundexception e) {
e.printstacktrace();
} finally {
p.close();
}
}
}

java中的Io(input与output)操作总结(三)
与printwriter类似的还有一个printstream类,此处以printwriter举例是因为文本文件具有人为可读性
而二进制文件(字节模式)则需要使用专门的程序来读取
可能有人会问:fileoutputstream、 filewriter都能写文件,那么为何还需要printwriter和printstream类
如果细看api文档,可以知道前者单纯的字符写入流和字节写入流操作的方式大多用数组进行
对文件的细化处理非常不方便,而printwriter和printstream则很好的解决了这一问题,提供print()等方法
并且,printwriter和printstream对于不存在文件对象的情况下会直接创建,如果已有文件对象
它们则会把原有文件给覆盖掉,却没有增加方法

解决这问题也很简单,再看api文档
printwriter有一个构造方法printwriter(writer out),也就是能够传入writer对象
printstream有一个构造方法printstream(outputstream out),也就是能传入outputstream对象
因此,我们这样写就可以了
new printwriter(new filewriter(file,true))
new printstream(new fileoutputstream(file,true))
既能增加数据,也能更高效的处理文件,见如下代码示范

实例5:实现printwriter的数据追加功能

复制代码 代码如下:

import java.io.file;
import java.io.filewriter;
import java.io.ioexception;
import java.io.printwriter;
public class demo {
public static void main(string[] args) {
string path = file.separator + "home" + file.separator + "siu" +
file.separator + "work" + file.separator + "demo.txt";
//创建文件对象
file file = new file(path);
printwriter p = null;
try {
//利用filewriter方式构建printwriter对象,实现追加
p = new printwriter(new filewriter(file,true));
p.println("尼玛 这一句就是追加的 看到没");
p.flush();
} catch (ioexception e) {
e.printstacktrace();
} finally {
//我们来小心翼翼的关闭流,好吧^_^
p.close();
}
}
}

看,这样就能实现追加效果了,最后一行便是

java中的Io(input与output)操作总结(三)
system类对io的支持
实例6:system类中的写入

复制代码 代码如下:

import java.io.ioexception;
import java.io.outputstream;
public class demo {
public static void main(string[] args) {
//别忘了,outputstream是所有字节写入流的父类
outputstream out = system.out;
try {
//写入数据,只能是数组,所以用getbytes()方法
out.write("hello,bitch!\r\n".getbytes());
} catch (ioexception e) {
e.printstacktrace();
}
}
}

注意,此处正好印证了system.out的覆写行为
如果想学好io,整个io体系中的多态需要了解清楚才能驾轻就熟

java中的Io(input与output)操作总结(三)
实例7:system类中的读取

复制代码 代码如下:

import java.io.ioexception;
import java.io.inputstream;
public class demo {
public static void main(string[] args) {
//别忘了inputstream是所有字节输入流的父类
inputstream in = system.in;
system.out.print("请输入文字: ");
byte[] buf = new byte[1024];
int len = 0;
try {
//将输入的数据保证到数组中,len记录输入的长度
len = in.read(buf);
} catch (ioexception e) {
e.printstacktrace();
}
//用字符串的方式打印数组中的数据
system.out.println("你的输入是: " + new string(buf,0,len));
}
}

看,这样就能从键盘获取内容并且打印了

java中的Io(input与output)操作总结(三)
需要注意的是,这里的数组大小是1024字节
一旦输入的数据超过1024字节,那么超过的内容将被截取掉,所以此程序有局限性
并且,一个中文占两个字节,输入中文有时候会被意外截取掉
相信我,每个程序都是俺亲自编写编译的~!!!
实例8:利用bufferedreader实现对键盘的读取

复制代码 代码如下:

import java.io.bufferedreader;
import java.io.ioexception;
import java.io.inputstreamreader;
public class demo {
public static void main(string[] args) {
bufferedreader b = new bufferedreader(new inputstreamreader(system.in));
system.out.print("请输入文本:");
try {
string str = b.readline();
system.out.println("你输入的是:" + str);
} catch (ioexception e) {
e.printstacktrace();
}
//循环读取方式
/*
while(true) {
system.out.print("请输入文本:");
string str = null;
try {
str = b.readline();
} catch (ioexception e) {
e.printstacktrace();
}
//如果输入over就结束循环
if("over".equals(str)) {
break;
}
system.out.println("你输入的是:" + str);
}
*/
try {
//关闭流,不耐烦的就直接抛
b.close();
} catch (ioexception e) {
e.printstacktrace();
}
}
}

这样做相对于上面一个方法的好处是:不用关心数组大小的问题
bufferedreader有一个最重要的方法就是readline(),每次读取一行
java中的Io(input与output)操作总结(三)