Using SecurityUtilities to query system properties

This commit is contained in:
szegedia%freemail.hu 2006-11-02 09:34:23 +00:00
Родитель 3a93c8cea4
Коммит 279a016d7a
2 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -297,7 +297,7 @@ public class Dim {
// Can be a file name // Can be a file name
try { try {
if (sourceUrl.startsWith("~/")) { if (sourceUrl.startsWith("~/")) {
String home = System.getProperty("user.home"); String home = SecurityUtilities.getSystemProperty("user.home");
if (home != null) { if (home != null) {
String pathFromHome = sourceUrl.substring(2); String pathFromHome = sourceUrl.substring(2);
File f = new File(new File(home), pathFromHome); File f = new File(new File(home), pathFromHome);

Просмотреть файл

@ -52,6 +52,7 @@ import javax.swing.tree.TreePath;
import java.lang.reflect.Method; import java.lang.reflect.Method;
import org.mozilla.javascript.Kit; import org.mozilla.javascript.Kit;
import org.mozilla.javascript.SecurityUtilities;
import org.mozilla.javascript.tools.shell.ConsoleTextArea; import org.mozilla.javascript.tools.shell.ConsoleTextArea;
@ -583,7 +584,7 @@ public class SwingGui extends JFrame implements GuiCallback {
private String chooseFile(String title) { private String chooseFile(String title) {
dlg.setDialogTitle(title); dlg.setDialogTitle(title);
File CWD = null; File CWD = null;
String dir = System.getProperty("user.dir"); String dir = SecurityUtilities.getSystemProperty("user.dir");
if (dir != null) { if (dir != null) {
CWD = new File(dir); CWD = new File(dir);
} }