91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java項目中如何將鍵盤輸入事件保存到txt文件

發布時間:2020-11-26 15:37:07 來源:億速云 閱讀:236 作者:Leah 欄目:編程語言

本篇文章給大家分享的是有關Java項目中如何將鍵盤輸入事件保存到txt文件,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

具體如下:

package javatest;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.FileReader;
import java.io.IOException;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Scanner;
import java.util.Set;
public class Demo {
  public static void main(String[] args) {
    Scanner scanner = new Scanner(System.in);
    System.out.println("請輸入 :");
    String inputStr = scanner.nextLine();
    System.out.println("inputStr : " + inputStr);
    File file = new File("D:/test/test01.txt");
    FileOutputStream fileOut;
    try {
      fileOut = new FileOutputStream(file);
      fileOut.write(inputStr.getBytes());
    } catch (FileNotFoundException e) {
      e.printStackTrace();
    } catch (IOException e) {
      e.printStackTrace();
    }
    String result = "";
    try {
      BufferedReader br = new BufferedReader(new FileReader(file));//構造一個BufferedReader類來讀取文件
      String s = null;
      while ((s = br.readLine()) != null) {//使用readLine方法,一次讀一行
        result = result + s + " ";
      }
      br.close();
    } catch (Exception e) {
      e.printStackTrace();
    }
    System.out.println("---------------------------------------------");
    System.out.println(result);
    String[] arr = result.split(" ");
    System.out.println(Arrays.toString(arr));
    System.out.println(arr.length);
    Map<String, Integer> map = new HashMap<>();
    for (String str : arr) {
      Integer num = map.get(str);
      map.put(str, num == null ? 1 : num + 1);
    }
    Set set = map.entrySet();
    Iterator it = set.iterator();
    System.out.println("---------------------------------------------");
    System.out.println("方法一 :");
    while (it.hasNext()) {
      Map.Entry<String, Integer> entry = (Map.Entry<String, Integer>) it.next();
      System.out.println("單詞 " + entry.getKey() + " 出現次數 : " + entry.getValue());
    }
    System.out.println("---------------------------------------------");
    System.out.println("方法二 :");
    Iterator it01 = map.keySet().iterator();
    while (it01.hasNext()) {
      Object key = it01.next();
      System.out.println("單詞 " + key + " 出現次數 : " + map.get(key));
    }
  }
}

輸出:

請輸入 :
AAA BBB CCC DDD DDD AAA
inputStr : AAA BBB CCC DDD DDD AAA
---------------------------------------------
AAA BBB CCC DDD DDD AAA
[AAA, BBB, CCC, DDD, DDD, AAA]
6
---------------------------------------------
方法一 :
單詞 AAA 出現次數 : 2
單詞 CCC 出現次數 : 1
單詞 BBB 出現次數 : 1
單詞 DDD 出現次數 : 2
---------------------------------------------
方法二 :
單詞 AAA 出現次數 : 2
單詞 CCC 出現次數 : 1
單詞 BBB 出現次數 : 1
單詞 DDD 出現次數 : 2

以上就是Java項目中如何將鍵盤輸入事件保存到txt文件,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

磐石市| 丹巴县| 威宁| 巴塘县| 海南省| 湘潭市| 云南省| 恩平市| 松潘县| 武山县| 贵定县| 锡林浩特市| 广昌县| 靖州| 镇远县| 长海县| 香格里拉县| 兴化市| 吴忠市| 宁晋县| 合山市| 贵阳市| 高清| 宜丰县| 勃利县| 英德市| 济南市| 公主岭市| 新余市| 建湖县| 沿河| 胶州市| 寻乌县| 霍城县| 新巴尔虎左旗| 金塔县| 丹江口市| 兴化市| 吴旗县| 黎川县| 五指山市|