• Java Int类型与字符,汉字之间的转换



    Java 中的流主要是分为字节流和字符流
    再一个角度分析的话可以分为输入流和输出流
    输入和输出是一个相对的概念 相对的分别是jvm虚拟机的内存大小
    从另一个角度讲Java或者用Java开发的其他软件只是一个工具而已
    你可以从几个角度进行深入,一个是利用好工具,一个是改造工具,一个是制造工具

    try {
    BufferedReader bufferedReader=new BufferedReader(new FileReader(new File("D:\ES笔记\ES命令")));
    String readLine = null;
    while ((readLine=bufferedReader.readLine())!=null) {
    //System.out.println(readLine);
    }
    } catch (FileNotFoundException e) {
    e.printStackTrace();
    } catch (IOException e) {
    e.printStackTrace();
    }
    try {
    BufferedInputStream bufferedInputStream=new BufferedInputStream(new FileInputStream("D:\ES笔记\ES命令"));
    int read =0;
    while ((read = bufferedInputStream.read())!=-1) {
    
    //System.out.print((char)read); 
    }
    } catch (Exception e) {
    e.printStackTrace();
    }
    /**
    * 貌似char可以在字符,汉字与数字之间进行转换,个人理解的char的作用就是一个查找ascii码表的过程
    */
    try {
    String s="22307 35806 24555 20048";//ASCII码
    String[] split = s.split(" ");
    for (String string : split) {
    //System.out.println((char)Integer.parseInt(string));
    }
    } catch (Exception e) {
    
    e.printStackTrace();
    
    }
    
    try {
    String s="你 好 中 国";//ASCII码
    String[] split = s.split(" ");
    for (String string : split) {
    System.out.print((int)string.charAt(0)+" ");
    }
    } catch (Exception e) {
    
    e.printStackTrace();
    }
  • 相关阅读:
    面向对象编程总结Python
    垃圾收集器与内存分配策略
    自定义异常、异常处理注意点
    关于线程【一】——线程创建、停止、interrupted()和isInterrupted()区别
    Java内存区域
    HotSpot虚拟机对象
    异常——try、catch、finally、throw、throws
    关于线程【二】——线程同步和异步
    fillder代理调试
    新鲜出炉的Asp.Net MVC电子书
  • 原文地址:https://www.cnblogs.com/suzhenxiang/p/5697659.html
Copyright © 2020-2023  润新知