博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java例程练习(转换流)
阅读量:6828 次
发布时间:2019-06-26

本文共 1032 字,大约阅读时间需要 3 分钟。

import java.io.*;public class Test {	public static void main(String[] args) {		try {			OutputStreamWriter osw = new OutputStreamWriter(new FileOutputStream("C:/java/char.txt"));			osw.write("microsoftibssunapplehp");			System.out.println(osw.getEncoding());//文本编码			osw.close();						//加了true 可以再文件末尾添加			osw = new OutputStreamWriter(new FileOutputStream("C:/java/char.txt", true),"ISO8859_1");			osw.write("microsoftibssunapplehp");			System.out.println(osw.getEncoding());//文本编码			osw.close();		} catch (IOException e) {		}	}}

import java.io.*;public class Test {	public static void main(String[] args) {				InputStreamReader isr = 			new InputStreamReader(System.in);		BufferedReader br = new BufferedReader(isr);				String s = null;				try {			s = br.readLine();			while(s != null) {				if(s.equalsIgnoreCase("exit")) break;				System.out.println(s.toUpperCase());				s = br.readLine();			}			br.close();		} catch (IOException e) {			e.printStackTrace();		}	}}

转载于:https://www.cnblogs.com/wjchang/archive/2012/05/03/3671700.html

你可能感兴趣的文章
TCP网络编程流程
查看>>
StreamWriter写入文件
查看>>
CCR与DAG的区别
查看>>
Oracle教程之管理索引(六)--Oracle重建索引
查看>>
Android设备信息、感应器检测
查看>>
How to Hash Data with Salt
查看>>
Eclipse导入别人项目爆红叉
查看>>
Alpha冲刺随笔集
查看>>
poj2030
查看>>
JavaScript进阶试题
查看>>
笔记本自动断网解决办法
查看>>
装饰器原理剖析
查看>>
day3:vcp考试
查看>>
DNS正向解析与反向解析
查看>>
BZOJ3926:[ZJOI2015]诸神眷顾的幻想乡——题解
查看>>
12.SpringBoot+MyBatis(XML)+Druid
查看>>
8.国际化
查看>>
设置用户id和设置组id
查看>>
vue----js-cookie
查看>>
推荐给开发者的20款响应式jQuery插件(收藏)
查看>>