aboutsummaryrefslogtreecommitdiff
path: root/libjava
diff options
context:
space:
mode:
Diffstat (limited to 'libjava')
-rw-r--r--libjava/ChangeLog7
-rw-r--r--libjava/gnu/java/net/protocol/file/Connection.java45
2 files changed, 29 insertions, 23 deletions
diff --git a/libjava/ChangeLog b/libjava/ChangeLog
index 789fa92..3e9b3d5 100644
--- a/libjava/ChangeLog
+++ b/libjava/ChangeLog
@@ -1,5 +1,12 @@
2003-12-02 Michael Koch <konqueror@gmx.de>
+ * gnu/java/net/protocol/file/Connection.java:
+ Some reformating.
+ (file): Renamed from fileIn.
+ (getPermission): Moved around.
+
+2003-12-02 Michael Koch <konqueror@gmx.de>
+
* gnu/java/net/protocol/jar/Connection.java
(Connection): Made class final, merged documentation with classpath.
(file_cache): Made private.
diff --git a/libjava/gnu/java/net/protocol/file/Connection.java b/libjava/gnu/java/net/protocol/file/Connection.java
index dddbd30..fcae745 100644
--- a/libjava/gnu/java/net/protocol/file/Connection.java
+++ b/libjava/gnu/java/net/protocol/file/Connection.java
@@ -74,7 +74,7 @@ public class Connection extends URLConnection
/**
* This is a File object for this connection
*/
- private File fileIn;
+ private File file;
/**
* InputStream if we are reading from the file
@@ -115,11 +115,12 @@ public class Connection extends URLConnection
return;
// If not connected, then file needs to be openned.
- fileIn = new File(getURL().getFile());
+ file = new File (getURL().getFile());
if (doInput)
- inputStream = new BufferedInputStream(new FileInputStream(fileIn));
+ inputStream = new BufferedInputStream(new FileInputStream(file));
+
if (doOutput)
- outputStream = new BufferedOutputStream(new FileOutputStream(fileIn));
+ outputStream = new BufferedOutputStream(new FileOutputStream(file));
connected = true;
}
@@ -134,8 +135,9 @@ public class Connection extends URLConnection
public InputStream getInputStream()
throws IOException
{
- if (! doInput)
+ if (!doInput)
throw new ProtocolException("Can't open InputStream if doInput is false");
+
if (!connected)
connect();
@@ -152,7 +154,7 @@ public class Connection extends URLConnection
public OutputStream getOutputStream()
throws IOException
{
- if (! doOutput)
+ if (!doOutput)
throw new
ProtocolException("Can't open OutputStream if doOutput is false");
@@ -163,6 +165,19 @@ public class Connection extends URLConnection
}
// Override default method in URLConnection.
+ /**
+ * This method returns a <code>Permission</code> object representing the
+ * permissions required to access this URL. This method returns a
+ * <code>java.io.FilePermission</code> for the file's path with a read
+ * permission.
+ *
+ * @return A Permission object
+ */
+ public Permission getPermission() throws IOException
+ {
+ return permission;
+ }
+
public String getHeaderField(String name)
{
try
@@ -176,7 +191,6 @@ public class Connection extends URLConnection
return (String) hdrHash.get(name.toLowerCase());
}
- // Override default method in URLConnection.
public Map getHeaderFields()
{
try
@@ -190,7 +204,6 @@ public class Connection extends URLConnection
return hdrHash;
}
- // Override default method in URLConnection.
public String getHeaderField(int n)
{
try
@@ -207,7 +220,6 @@ public class Connection extends URLConnection
return null;
}
- // Override default method in URLConnection.
public String getHeaderFieldKey(int n)
{
try
@@ -259,7 +271,7 @@ public class Connection extends URLConnection
// to add others later and for consistency, we'll implement it this way.
// Add the only header we know about right now: Content-length.
- long len = fileIn.length();
+ long len = file.length();
String line = "Content-length: " + len;
hdrVec.addElement(line);
@@ -269,18 +281,5 @@ public class Connection extends URLConnection
String key = getKey(line);
hdrHash.put(key.toLowerCase(), Long.toString(len));
}
-
- /**
- * This method returns a <code>Permission</code> object representing the
- * permissions required to access this URL. This method returns a
- * <code>java.io.FilePermission</code> for the file's path with a read
- * permission.
- *
- * @return A Permission object
- */
- public Permission getPermission() throws IOException
- {
- return permission;
- }
} // class FileURLConnection