diff options
author | apbianco <apbianco@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-02-09 08:30:31 +0000 |
---|---|---|
committer | apbianco <apbianco@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-02-09 08:30:31 +0000 |
commit | 73c93a3884e79744fcccff9e73e4f42ea7a02ef9 (patch) | |
tree | 00fee14fe16afd828b8bc6dff86537e677cacaaa /libjava | |
parent | 29b5988f5dd81c9ea6ad50587ece6c27dd8c273b (diff) | |
download | ppe42-gcc-73c93a3884e79744fcccff9e73e4f42ea7a02ef9.tar.gz ppe42-gcc-73c93a3884e79744fcccff9e73e4f42ea7a02ef9.zip |
2001-02-09 Alexandre Petit-Bianco <apbianco@redhat.com>
* java/io/File.java (java.net): Imported.
(getAbsoluteFile): Added.
(getCanonicalPath): Likewise.
(toURL): Likewise.
(http://gcc.gnu.org/ml/java-patches/2001-q1/msg00208.html)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@39562 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava')
-rw-r--r-- | libjava/ChangeLog | 7 | ||||
-rw-r--r-- | libjava/java/io/File.java | 16 |
2 files changed, 23 insertions, 0 deletions
diff --git a/libjava/ChangeLog b/libjava/ChangeLog index 6848231aa96..e1fdd1f103b 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,3 +1,10 @@ +2001-02-09 Alexandre Petit-Bianco <apbianco@redhat.com> + + * java/io/File.java (java.net): Imported. + (getAbsoluteFile): Added. + (getCanonicalPath): Likewise. + (toURL): Likewise. + 2001-02-08 Bryce McKinlay <bryce@albatross.co.nz> * java/lang/Byte.java: Remove redundant instanceof and null checks. diff --git a/libjava/java/io/File.java b/libjava/java/io/File.java index fc3477c040b..5962641760d 100644 --- a/libjava/java/io/File.java +++ b/libjava/java/io/File.java @@ -11,6 +11,7 @@ details. */ package java.io; import java.util.*; +import java.net.*; import gnu.gcj.runtime.FileDeleter; /** @@ -106,8 +107,18 @@ public class File implements Serializable return System.getProperty("user.dir") + separatorChar + path; } + public File getAbsoluteFile () throws IOException + { + return new File (getAbsolutePath()); + } + public native String getCanonicalPath () throws IOException; + public File getCanonicalFile () throws IOException + { + return new File (getCanonicalPath()); + } + public String getName () { int last = path.lastIndexOf(separatorChar); @@ -178,6 +189,11 @@ public class File implements Serializable return path; } + public URL toURL () throws MalformedURLException + { + return new URL ("file:" + path + (isDirectory() ? "/" : "")); + } + private final native boolean performMkdir (); public boolean mkdir () { |