vote up 2 vote down star

I'm receiving a string from an external process. I want to use that String to make a filename, and then write to that file. Here's my code snippet to do this:

    String s = ... // comes from external source
    File currentFile = new File(System.getProperty("user.home"), s);
    PrintWriter currentWriter = new PrintWriter(currentFile);

If s contains an invalid character, such as '/' in a Unix-based OS, then a java.io.FileNotFoundException is (rightly) thrown.

How can I safely encode the String so that it can be used as a filename?

Edit: What I'm hoping for is an API call that does this for me.

I can do this:

    String s = ... // comes from external source
    File currentFile = new File(System.getProperty("user.home"), URLEncoder.encode(s, "UTF-8"));
    PrintWriter currentWriter = new PrintWriter(currentFile);

But I'm not sure whether URLEncoder it is reliable for this purpose.

flag

What is the purpose of encoding the string? – Stephen C Jul 26 at 10:18
@Stephen C: The purpose of encoding the string is to make suitable for use as a filename, as java.net.URLEncoder does for URLs. – Steve McLeod Jul 26 at 10:21
Oh I see. Does the encoding need to be reversible? – Stephen C Jul 26 at 10:26
@Stephen C: No, it doesn't need to be reversible, but I'd like the result to resemble as close as possible the original string. – Steve McLeod Jul 26 at 10:29
Does the encoding need to obscure the original name? Does it need to be 1-to-1 ; i.e. are collisions OK? – Stephen C Jul 26 at 10:30
show 1 more comment

4 Answers

vote up 1 vote down check

If you want the result to resemble the original file, SHA-1 or any other hashing scheme is not the answer. Instead you want something like this.

char fileSep = '/'; // ... or do this portably.
char escape = '%'; // ... or some other legal char.
String s = ...
int len = s.length();
StringBuilder sb = new StringBuilder(len);
for (int i = 0; i < len; i++) {
    char ch = s.charAt(i);
    if (ch < ' ' || ch >= 0x7F || ch == fileSep || ... // add other illegal chars
        || (ch == '.' && i == 0) // we don't want to collide with "." or ".."!
        || ch == escape) {
        sb.append(escape);
        if (ch < 0x10) {
            sb.append('0');
        }
        sb.append(Integer.toHexString(ch));
    } else {
        sb.append(ch);
    }
}
File currentFile = new File(System.getProperty("user.home"), sb.toString());
PrintWriter currentWriter = new PrintWriter(currentFile);

This solution gives a reversible encoding (with no collisions) where the encoded strings resemble the original strings in most cases. I'm assuming that you are using 8-bit characters.

URLEncoder has the disadvantage that it encodes a whole lot of legal file name characters.

Edit: If you want a not-guaranteed-to-be-reversible solution, then simply remove the 'bad' characters rather than replacing them with and escape sequence.

Edit 2: Addressed collisions with "." and ".." directory entries.

link|flag
As explained above, URLEncoder encodes too much, AND it fails to deal with "." and ".." – Stephen C Jul 26 at 11:15
vote up 2 vote down

My suggestion is to take a "white list" approach, meaning don't try and filter out bad characters. Instead define what is OK. You can either reject the filename or filter it. If you want to filter it:

String name = s.replaceAll("\W+", "");

What this does is replaces any character that isn't a number, letter or underscore with nothing. Alternatively you could replace them with another character (like an underscore).

The problem is that if this is a shared directory then you don't want file name collision. Even if user storage areas are segregated by user you may end up with a colliding filename just by filtering out bad characters. The name a user put in is often useful if they ever want to download it too.

For this reason I tend to allow the user to enter what they want, store the filename based on a scheme of my own choosing (eg userId_fileId) and then store the user's filename in a database table. That way you can display it back to the user, store things how you want and you don't compromise security or wipe out other files.

You can also hash the file (eg MD5 hash) but then you can't list the files the user put in (not with a meaningful name anyway).

link|flag
I don't think it's a good idea to provide the bad solution first. In addition, MD5 is a nearly cracked hash algorithm. I recommend at least SHA-1 or better. – vog Jul 26 at 10:12
For the purposes of creating a unique filename who cares if the algorithm is "broken"? – cletus Jul 26 at 11:07
@cletus: the problem is that different strings will map to the same filename; i.e. collision. – Stephen C Jul 26 at 11:19
A collision would have to be deliberate, the original question doesn't talk about these strings being chosen by an attacker. – tialaramex Jul 26 at 12:33
A problem no-one has really addressed is that there are limits on filename length and on total length of a file path, plus arbitrary limits on file names on some platforms, and even a limit on how many files can be in a particular directory. And this is a Java question, so we can't be sure the software will only run on (fill in the name of your favourite OS here). Thus I think any adequate solution would want to consider how to retry or what else to do if the name tried is rejected by the OS. – tialaramex Jul 26 at 12:36
show 2 more comments
vote up 4 vote down

It depends on whether the encoding should be reversible or not.

Revsersible

Use URL encoding (java.net.URLEncoder) to replace special characters with %xx. Note that you take care of the special cases where the string equals ".", equals ".." or is empty!¹ Many programs use URL encoding to create file names, so this is a standard technique which everybody understands.

Irrevsersible

Use a hash (e.g. SHA-1) of the given string. Modern hash algorithms (not MD5) can be considered collision-free. In fact, you'll have a break-through in cryptography if you find a collision.


¹ You can handle all 3 special cases elegantly by using a prefix such as "myApp-". If you put the file directly into $HOME, you'll have to do that anyway to avoid conflicts with existing files such as ".bashrc".
public static String encodeFilename(String s)
{
    try
    {
        return "myApp-" + java.net.URLEncoder.encode(s, "UTF-8");
    }
    catch (java.io.UnsupportedEncodingException e)
    {
        throw new RuntimeException("UTF-8 is an unknown encoding!?");
    }
}

link|flag
URLEncoder's idea of what is a special character may not be correct. – Stephen C Jul 26 at 10:53
+1: nice distinction between reversible and irreversible encodings – dfa Jul 26 at 10:53
@Stephen C: according to the documentation (see URLEncoder link), the function generates strings which contain at most the following 67 characters: a-z, A-Z, 0-9, ".", "-", "*", "_" and "+". Each of them is allowed in file names. (yes, "*" is allowed!) – vog Jul 26 at 11:08
1  
@vog: URLEncoder fails for "." and "..". These must be encoded or else you will collide with directory entries in $HOME – Stephen C Jul 26 at 11:12
Good point. Thanks! I corrected my answer. – vog Jul 26 at 11:21
show 2 more comments
vote up -1 vote down

You could remove the invalid chars ( '/', '\', '?', '*') and then use it.

link|flag
1  
This would introduce the possibility of naming conflicts. I.e., "tes?t", "tes*t" and "test" would go the the same file "test". – vog Jul 26 at 10:01
True. Then replace them. For instance, '/' -> slash, '*' -> star... or use a hash as vog suggested. – Burkhard Jul 26 at 10:03
You're always open to the possibility of naming conflicts – Brian Agnew Jul 26 at 10:22
1  
"?" and "*" are allowed characters in file names. They only need to be escaped in shell commands, because usually globbing is used. On the file API level, however, there's no problem. – vog Jul 26 at 11:07
@Brian Agnew: not actually true. Schemes that encode invalid characters using a reversible escaping scheme won't give collisions. – Stephen C Jul 26 at 11:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.