[求助]字符串替换问题
public void jMenuItem2_actionPerformed(ActionEvent e) {jFileChooser1.showOpenDialog(this);
String temp=jFileChooser1.getSelectedFile().getPath();
String lujing=temp.replace('\','/');
}
由于系统返回的是windows格式的路径,我想把路径中的'\'换成'/',但'\'好像是关键字符,提示我错误,我要想达到目的该怎么办呢?