有没有办法在文本字段上的 netbeans 上自动将 \ 符号转换为 java 中的 / 。这样做的目的是将图像上传到数据库。我通过文件选择器获取图像位置,然后将位置(地址)输出到文本字段,然后用户可以通过单击按钮上传。基本上我想在设置 AddressText 之前将字符串变量“info”每个 \ 转换为 /
我的代码是
int returnVal = fileChooser.showOpenDialog(this);
if (returnVal == JFileChooser.APPROVE_OPTION) {
File file = fileChooser.getSelectedFile();
// What to do with the file, e.g. display it in a TextArea
String info =file.getAbsolutePath();
AddressText.setText(info);
}