本文主要是介绍Java实验——编写一个程序,统计字符串“we are students,we are from china,we love china” 中包含字母a和e的个数和所在位置,并输出结果。,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1.编写一个程序,统计字符串“we are students,we are from china,we love china” 中包含字母a和e的个数和所在位置,并输出结果。
代码:
public class Test {public static void main(String[] args) {int sum = 0,sum1=0;char[ ] chs ={'w','e','a','r','e','s','t','u','d','e','n','t','s','w','e','a','r','e','f','r','o','m','c','h','i','n','a','w','e','l','o','v','e','c','h','i','n','a'};for (int i = 0; i < chs.length; i++) {if (chs[i] == 'e') {sum++;System.out.println("字符e在字符数组中的位置是: "+i);}}for (int i = 0; i < chs.length; i++) {if (chs[i] == 'a') {System.out.println("字符a在字符数组中的位置是: "+i);sum1++;}}System.out.println("字符e一共有"+sum+"个");System.out.println("字符a一共有"+sum1+"个");}}
输出结果:
2.编写一个程序,使用Runtime类运行第1个程序。
package shiyan.shiyan7;public class Test2 {public static void main(String[] args) {Runtime run=Runtime.getRuntime();try{run.exec("notepad.exe C:\\Users\\29308\\id.java");}catch (Exception e){e.printStackTrace();}}}
运行结果:
3.编写一个程序,使用文件字节输入流读取第1个程序,将文件的内容显示在屏幕上。
代码:
package shiyan.shiyan7;import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.IOException;public class demo1 {public static void main(String[] args) throws IOException {//输入读取文件路径FileInputStream fis=new FileInputStream("C:\\Users\\29308\\id.java");// 定义变量存储读取文件的有效字节数int len=0;// 定义字节数组,一般长度为1024的倍数(定义其他数据,易产生乱码)byte[] bytes=new byte[1024];//根据read返回值判断是否到达文件末尾while ((len=fis.read(bytes))!=-1){//使用String构造方法,输出数组System.out.print(new String(bytes,0,len));}}}
运行结果:
4.编译、运行程序,给出输出结果。
import java.io.*;public class Example12_5 {public static void main(String args[]) {byte [] a = "新年快乐".getBytes();byte [] b = "Happy New Year".getBytes();File file = new File("a.txt"); try{ OutputStream out = new FileOutputStream(file); System.out.println(file.getName()+"的大小:"+file.length()+"字节");out.write(a); out.close();out = new FileOutputStream(file,true); System.out.println(file.getName()+"的大小:"+file.length()+"字节");out.write(b,0,b.length);System.out.println(file.getName()+"的大小:"+file.length()+"字节");out.close();}catch(IOException e) {System.out.println("Error "+e);}}}
这篇关于Java实验——编写一个程序,统计字符串“we are students,we are from china,we love china” 中包含字母a和e的个数和所在位置,并输出结果。的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!