System:类中的方法和属性都是静态的。
out:标准输出,默认是控制台。
in:标准输入,默认是键盘。
System:描述系统一些信息。
out:标准输出,默认是控制台。
in:标准输入,默认是键盘。
System:描述系统一些信息。
获取系统属性信息:Properties getProperties();
import java.util.*;
class SystemDemo
{
public static void main(String[] args)
{
Properties prop = System.getProperties();
//因为Properties是Hashtable的子类,也就是Map集合的一个子类对象。
//那么可以通过map的方法取出该集合中的元素.
//getProperties(); 确定当前的系统属性
/*
//prop.keySet().iterator();
for(Object obj:prop.keySet())
{
String value = (String)prop.get(obj);
System.out.println(obj+"::"+value);
}*/
//在系统中自定义一些特有信息
System.setProperty("mykey","Myvalue");
//String setproperty(String key,String value); 设置指定键指示的系统属性。
/*
for(Object obj:prop.keySet())
{
String value = (String)prop.get(obj);
System.out.println(obj+"::"+value);
}*/
//获取指定属性信息
String value = System.getProperty("os.name");
//getProperty(); 获取指定键指示的系统属性。
System.out.println("value="+value);
//在jvm启动时动态加载一些属性信息
String v = System.getProperty("haha");
System.out.println("v="+v);
//javac SystemDemo.java
//java -Dhaha=qqqq SystemDemo
}
}
/*
Runtime对象
该类并没有提供构造函数,说明不可以new对象。
但该类中还有非静态方法,说明该类肯定会提供方法获取本类对象,而且该方法是静态的,
并且返回值类型是本类类型。
该方式是static Runtime getRuntime();
由此可以看出该类使用了单利设计模式完成。
*/
class RuntimeDemo
{
/*Public static void sop(Object obj)
{
System.out.println(obj);
}*/
public static void main(String[] args) throws Exception
{
Runtime r = Runtime.getRuntime();
/*
Process p = r.exec("C:\\Program Files\\Microsoft Games\\Minesweeper\\MineSweeper.exe");
Thread.sleep(5000);
p.destroy();//杀掉子进程
*/
Process p = r.exec("notepad.exe SystemDemo.java");
}
}
import java.util.*;
import java.text.*;
class DateDemo
{
public static void main(String[] args)
{
Date d = new Date();
System.out.println(d);
//将模式封装到SimpleDateformat对象中。
SimpleDateFormat sdf = new SimpleDateFormat("yyyy年MM月dd日 E kk:mm:ss");
//调用format方法让模式格式化指定Date对象。
String time = sdf.format(d);
System.out.println("time="+time);
}
}
import java.util.*;
import java.text.*;
class CalendarDemo
{
public static void sop(Object obj)
{
System.out.println(obj);
}
public static void main(String[] args)
{
Calendar c = Calendar.getInstance();
String[] mons = {"一月","二月","三月","四月",
"五月","六月","七月","八月",
"九月","十月","十一月","十二月"};
String[] weks = {"星期日","星期一","星期二","星期三"
,"星期四","星期五","星期六"};
int index1 = c.get(Calendar.MONTH);
int index2 = c.get(Calendar.DAY_OF_WEEK)-1;
sop(c.get(Calendar.YEAR)+"年");
//sop((c.get(Calendar.MONTH)+1)+"月");
sop(mons[index1]);
sop(c.get(Calendar.DAY_OF_MONTH)+"日");
//sop("星期"+c.get(Calendar.DAY_OF_WEEK));
sop(weks[index2]);
}
}
import java.util.*;
/*
练习:
1.获取任意年的二月有多少天
思路:c.get(year,2,1);//某年的3月1号
c.add(Calendar.DAY_OF_MONTH,-1);//3月1号往前推一天。
2.获取昨天的现在这个时刻
c.add(Calendar.DAY_OF_MONTH,-1);
*/
class CalendarDemo2
{
public static void sop(Object obj)
{
System.out.println(obj);
}
public static void main(String[] args)
{
Calendar c = Calendar.getInstance();
//c.set(2015,4,1);
//c.add(Calendar.YEAR,1);//年份+1
//c.add(Calendar.MONTH,4);//月份+4
//c.add(Calendar.MONTH,-3);//月份-3
printCalendar(c);
}
public static void printCalendar(Calendar c)
{
String[] mons = {"一月","二月","三月","四月",
"五月","六月","七月","八月",
"九月","十月","十一月","十二月"};
String[] weeks = {"星期日","星期一","星期二","星期三","星期四","星期五","星期六"};
int index1 = c.get(Calendar.MONTH);
int index2 = c.get(Calendar.DAY_OF_WEEK)-1;
sop(index1);
sop(index2);
sop(c.get(Calendar.YEAR)+"年");
sop(mons[index1]);
sop(c.get(Calendar.DAY_OF_MONTH)+"日");
sop(weeks[index2]);
}
}
import java.util.*;
class MathDemo
{
public static void sop(Object obj)
{
System.out.println(obj);
}
public static void main(String[] args)
{
//sop(Math.ceil(13.56));//ceil(double d);//返回大于指定数据的最小整数
//sop(Math.floor(13.56));//floor(double d);//返回小于指定数据的最大整数
//long l = Math.round(12.64);//四舍五入
//sop(l);
//sop(Math.pow(2,10));
/*
for(int i=0;i<10;i++)
{
double d = (int)(Math.random()*10);//Math类中有random()方法
sop(d);
}
*/
/*
Random r = new Random();//java.util包中有Random类
for(int i=0;i<10;i++)
{
int d = r.nextInt(10);//返回随机数的范围 0~10,包头不包尾
sop(d);
}*/
double d = 12.34567;
d = d*100+0.5;
d = (int)d;
d = d/100;
sop(d);
}
}
IO(Input Output)流
流按操作数据分为两种:字节流和字符流。
流按流向分为:输入流、输出流。
IO流常用基类:
字节流的抽象基类:InputStream,OutputStream。
字符流的抽象基类:Reader,Writer。
import java.io.*;
class FileWriterDemo
{
public static void sop(Object obj)
{
System.out.println(obj);
}
public static void main(String[] args) throws IOException
{
//创建一个FileWriter对象。该对象一被初始化就必须要明确被操作的文件。
//而且该文件会被创建到指定目录下。如果该目录下已有同名文件,将被覆盖。
//该步目的在于明确数据要存放的目的地。
FileWriter fw = new FileWriter("Demo.txt");
//调用Write方法,将字符串写入流中。但此时数据只存在于流(即内存)中,目的文件中还没有
fw.write("abcde");
//刷新流对象中的缓冲的数据,将数据刷到目的地中。
fw.flush();
fw.write("java");
fw.flush();
//close会关闭流资源,但关闭前会刷新一次内部的缓冲中的数据,将数据刷到目的地中。
//close和flush的区别:flush刷新后流可以继续使用。close刷新后会关闭流。
//close刷新后若再write数据会出现IOException
fw.write("haha");
fw.close();
}
}
/*
IO异常处理方式
*/
import java.io.*;
class FileWriterDemo2
{
public static void sop(Object obj)
{
System.out.println(obj);
}
public static void main(String[] args)
{
FileWriter fw = null;//在try外建立引用,在try内初始化才不会报异常
try
{
fw = new FileWriter("Demo2.txt");//fw = new FileWriter("D:\\Demo.txt");//可以指定位置
//若初始化抛出异常(如k:\\Demo.txt),即初始化失败,建立对象失败,此时fw = null。
//此时close()仍会执行,因此会出现异常NullPointerException,所以close执行前需判断
fw.write("abcdefg");
}
catch(IOException e)
{
sop(e.toString());
}
finally
{
try
{
if(fw!=null)
fw.close();//close();动作必须做,但同时也会抛异常,因此需要try
}
catch(IOException e)
{
sop(e.toString());
}
}
}
}
/*
演示对已有文件的数据续写
*/
import java.io.*;
class FileWriterDemo3
{
public static void sop(Object obj)
{
System.out.println(obj);
}
public static void main(String[] args)
{
FileWriter fw = null;
try
{
//传递一个true参数,代表不覆盖已有的文件。并在已有文件的末尾处进行数据续写。
fw = new FileWriter("Demo.txt",true);
fw.write("你好\r\n谢谢");//在windows中回车符有\n和\r,在Linux中\n是换行符。在Windows中需要\r\n才可以
}
catch(IOException e)
{
sop(e.toString());
}
finally
{
try
{
if(fw!=null)
fw.close();
}
catch(IOException e)
{
sop(e.toString());
}
}
}
}
import java.io.*;
class FileReaderDemo
{
public static void sop(Object obj)
{
System.out.print(obj);
}
public static void main(String[] args) throws Exception
{
//创建一个文件读取流对象,和指定名称的文件相关联。
//要保证文件时已经存在的,若不存在会发生异常FileNoFoundException
FileReader fr = new FileReader("Demo2.txt");
//调用读取流对象的read方法。会返回作为整数读取的字符,若已到达流的末尾则返回-1.
//read();一次读一个字符,而且会自动往下读
/*
int ch = fr.read();
sop("ch="+(char)ch);
*/
/*
while(true)
{
int ch = fr.read();
if(ch==-1)
break;
sop((char)ch+" ");
}*/
int ch = 0;
while((ch=fr.read())!=-1)
{
sop((char)ch+" ");
}
fr.close();
}
}
/*
第二种方式:通过字符数组进行读取。
*/
import java.io.*;
class FileReaderDemo2
{
public static void sop(Object obj)
{
System.out.print(obj);
}
public static void main(String[] args) throws Exception
{
FileReader fr = new FileReader("Demo2.txt");
//定义一个字符数组,用于存储读到字符。
//该read(char[])返回的是读到字符的个数.read(char[])方法会依次读。读到结尾后面后会返回-1.
char[] buf = new char[4];
/*
int num = fr.read(buf);
sop("num="+num+"..."+new String(buf));//4...abcd
int num1 = fr.read(buf);
sop("num="+num1+"..."+new String(buf));//3...efgd//第一次读abcd,打印。第二次读efg代替abc,所以打印efgd。
int num2 = fr.read(buf);
sop("num="+num2+"..."+new String(buf));//-1...efgd
*/
int num = 0;
while((num=fr.read(buf))!=-1)
{
sop(new String(buf,0,num));//读取指定范围内的字符。
}
fr.close();
}
}
//读取一个.java文件并在控制台上打印
import java.io.*;
class FileReaderTest
{
public static void sop(Object obj)
{
System.out.print(obj);//若是println,可能会在读到1024之后换行
}
public static void main(String[] args) throws Exception
{
FileReader fr = new FileReader("DateDemo.java");
char[] buf = new char[1024];
int num = 0;
while((num=fr.read(buf))!=-1)
{
sop(new String(buf,0,num));
}
}
}
//将C盘一个文本文件复制到D盘。
//复制的原理:将C盘下的文件数据存储到D盘的一个文件中。
/*
步奏:
1.在D盘创建一个文件,用于存储C盘文件中的数据。
2.定义读取流和C盘文件关联。
3.通过不断的读写完成数据存储。
4.关闭资源。
*/
import java.io.*;
class CopyTest
{
public static void sop(Object obj)
{
System.out.print(obj);
}
public static void main(String[] args) throws Exception
{
//copy_1();
copy_2();
}
//读一个字符,就向目的地写一个字符。
public static void copy_1() throws IOException
{
//创建目的地。
FileWriter fw = new FileWriter("ArraysDemo_copy.txt");
//与已有文件关联。
FileReader fr = new FileReader("F:\\黑马程序员 Java\\第十七天\\days17\\ArraysDemo.java");
int ch = 0;
while((ch=fr.read())!=-1)
{
fw.write(ch);
}
fw.close();
fr.close();
}
//将字符先存在一个字符数组中再写入目的地
public static void copy_2()
{
//需在try外先定义好引用。习惯:局部变量在定义时初始化。
FileWriter fw = null;
FileReader fr = null;
try
{
fw = new FileWriter("ArraysDemo_copy2.txt");
fr = new FileReader("Demo2.txt");
char[] buf = new char[1024];
int len = 0;
while((len=fr.read(buf))!=-1)
{
fw.write(buf,0,len);
}
}
catch(IOException e)
{
throw new RuntimeException("读写失败");
}
finally
{
if(fr!=null)
try
{
fr.close();
}
catch (IOException e)
{
}
if(fw!=null)
try
{
fw.close();
}
catch (IOException e)
{
}
}
}
}