RandomAccessFile 在 html 文件中打印空值

问题描述

try{ 
           RandomAccessFile f = new RandomAccessFile(new File("D:\\final year project\\New folder\\new.html"),"rw");
        f.seek(10);   
        f.writeUTF(str4);
        f.close();
           } catch (IOException e) {       
        e.printstacktrace();
           }

所以每当我运行这个程序时,它都会打印一个 NUL(在记事本++中),直到它达到搜索值,然后打印字符串 str4。并且 str4 是一个普通字符串 (String str4 = ("Hello me");). 所以如何摆脱那些 'NUL'。

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)