1. 字符串转数字
  2. 得到字符串指定位置的字符
  3. Java中与C语言中exit()相对应的退出程序函数
  4. 求绝对值
  5. 读写文件

1.字符串转数字,如“123”转为数字123:
使用函数:Integer.parseInt(String s)
例:

String s="12354";
		int x=Integer.parseInt(s);
		System.out.println(x);`

输出结果:12354
2.得到字符串指定位置的字符。
使用函数:charAt(int x)
例:

String s="12354";
		char x=s.charAt(4);
		System.out.println(x);

输出结果:5
3.与C语言中exit()相对应的退出程序函数:
System.exit(int x) x常用0
4.求绝对值
Math.abs(i)//i为int型常量
5.读写文件
(1)读文件

String pathname = "src/P1/txt/1.txt";//此处使用绝对路径,也可以使用相对路径
try (FileReader reader = new FileReader(pathname);
	             BufferedReader br = new BufferedReader(reader) 
	        ) 
		{
			String line;
			while((line = br.readLine()) != null )
			{
				System.out.println(line);
			}
			reader.close();
		}catch(IOException e){
			e.printStackTrace();
		}

(2)写文件

try {
			FileWriter fw = new FileWriter("C://Users//DELL//Desktop//test//6.txt");
			fw.write("dsfsdfsgffdgdsfdsfsdfsasdve");
			fw.write(Integer.toString(4));//写入int型数据
			fw.write("\r\n");//写入换行符
			fw.write('\t');//写入\t
			fw.close();
		} catch (IOException e) {
			e.printStackTrace();// TODO: handle exception
		}
``