java 代码实例

//实例
//下面的例子演示了DataInputStream和DataOutputStream的使用,该例从文本文件test.txt中读取5行,并转换成大写字母,最后保存在另一个文件test1.txt中。
import java.io.*;

public class Test{
public static void main(String args[])throws IOException{

  DataInputStream d = new DataInputStream(new
                           FileInputStream("test.txt"));

  DataOutputStream out = new DataOutputStream(new
                           FileOutputStream("test1.txt"));

  String count;
  while((count = d.readLine()) != null){
      String u = count.toUpperCase();
      System.out.println(u);
      out.writeBytes(u + "  ,");
  }
  d.close();
  out.close();

}
}

import java.io.*;

public class fileStreamTest2{
public static void main(String[] args) throws IOException {

File f = new File("a.txt");
FileOutputStream fop = new FileOutputStream(f);
// 构建FileOutputStream对象,文件不存在会自动新建

OutputStreamWriter writer = new OutputStreamWriter(fop, "UTF-8");
// 构建OutputStreamWriter对象,参数可以指定编码,默认为操作系统默认编码,windows上是gbk

writer.append("中文输入");
// 写入到缓冲区

writer.append("\r\n");
//换行

writer.append("English");
// 刷新缓存冲,写入到文件,如果下面已经没有写入的内容了,直接close也会写入

writer.close();
//关闭写入流,同时会把缓冲区内容写入文件,所以上面的注释掉

fop.close();
// 关闭输出流,释放系统资源

FileInputStream fip = new FileInputStream(f);
// 构建FileInputStream对象

InputStreamReader reader = new InputStreamReader(fip, "UTF-8");
// 构建InputStreamReader对象,编码与写入相同

StringBuffer sb = new StringBuffer();
while (reader.ready()) {
  sb.append((char) reader.read());
  // 转成char加到StringBuffer对象中
}
System.out.println(sb.toString());
reader.close();
// 关闭读取流

fip.close();
// 关闭输入流,释放系统资源

}
}

//遍历ArrayList
import java.util.*;

public class Test{
public static void main(String[] args) {
List list=new ArrayList();
list.add(“Hello”);
list.add(“World”);
list.add(“HAHAHAHA”);
//第一种遍历方法使用foreach遍历List
for (String str : list) { //也可以改写for(int i=0;i

你可能感兴趣的:(JAVA)