唐祖庭 2021-10-21 20:57 采纳率: 95.9%
浏览 25
已结题

求帮助。我这个代码好像冗余了。java

img


这个代码怎么改,我这个好像代码冗余了。 运行起来是一片空白。求解答谢谢

  • 写回答

2条回答 默认 最新

  • 诗人在流浪 2021-10-22 02:16
    关注

    public static void main(String[] args) throws IOException {
    String[] words = {"verb:eat","verb:drink","verb:sleep","verb:play","moun:meat","moun:hand","moun:hair"};
    FileOutputStream outVerb = new FileOutputStream(new File("D:/test/verb.txt"),true);//最好写全路径
    FileOutputStream outMoun = new FileOutputStream(new File("D:/test/moun.txt"),true);
    byte[] bytes;
    for(int i = 0;i<words.length;i++){
    bytes = words[i].substring(5).getBytes();
    if(words[i].startsWith("verb")){
    outVerb.write(bytes);

            }else {
                outMoun.write(bytes);
    
            }
    
        }
        outMoun.close();
        outVerb.close();
    }
    

    然后执行的结果会在D盘下的test目录下,生成两个文件.由于你的代码没有输出,所以控制台只能是一片空白

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

问题事件

  • 系统已结题 10月30日
  • 已采纳回答 10月22日
  • 创建了问题 10月21日

悬赏问题

  • ¥15 seatunnel 怎么配置Elasticsearch
  • ¥15 PSCAD安装问题 ERROR: Visual Studio 2013, 2015, 2017 or 2019 is not found in the system.
  • ¥15 (标签-MATLAB|关键词-多址)
  • ¥15 关于#MATLAB#的问题,如何解决?(相关搜索:信噪比,系统容量)
  • ¥500 52810做蓝牙接受端
  • ¥15 基于PLC的三轴机械手程序
  • ¥15 多址通信方式的抗噪声性能和系统容量对比
  • ¥15 winform的chart曲线生成时有凸起
  • ¥15 msix packaging tool打包问题
  • ¥15 finalshell节点的搭建代码和那个端口代码教程