这是我过去三天一直试图调查的一个有趣问题。
我的DOM包含一个文本节点。我试图在节点内替换一个字符串,在这种情况下是一个电子邮件地址。
我最初尝试使用innerHtml替换,这种方式很有效,直到在现有标记的属性中找到电子邮件地址。 我看到很多现有的答案说这样做但是它无法正常工作。
获取文本节点文本的最佳方法是什么,插入html并让DOM将其识别为新节点:(文本节点,标记节点,文本节点)?
文字节点
/proc/cpuinfo
JS
private String getGovernor() {
StringBuffer sb = new StringBuffer();
//String file = "/proc/cpuinfo"; // Gets most cpu info (but not the governor)
String file = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_governor"; // Gets governor
if (new File(file).exists()) {
try {
BufferedReader br = new BufferedReader(new FileReader(new File(file)));
String aLine;
while ((aLine = br.readLine()) != null)
sb.append(aLine + "\n");
if (br != null)
br.close();
}
catch (IOException e) {
e.printStackTrace();
}
}
return sb.toString();
}