Search Results

3
votes

Hidden Features of Java

How about Properties files in your choice of encodings? Used to be, when you loaded your Properties, you provided an InputStream and the load() method decoded it as ISO-8859-1. You …
0
votes

Java, unicode and fonts

How "foreign" are these characters? Most Latin-based fonts can handle at least the accented letters and other characters in the upper half of ISO-8859-1, but I don't think you can reasonably count …
4
votes

Does java have a using clause?

This is being talked about for Java 7: Automatic Resource Management …
10
votes

Why is ¿ displayed different in Windows vs Linux even when using UTF-8?

System.out.println() outputs the text in the system default encoding, but the console interprets that output according to its own encoding (or "codepage") setting. On your Windows machine the two …
2
votes

Why does the string “¿” get translated to “¿” when calling .getBytes()

See my reply to your other thread. But this: new St …
1
vote

Regexp: Substituting a version number in an XML file

Assuming you're using the replaceregexp task: <replaceregexp file="whatever" match="(<feature\b[^<>]+?version=\")[^\"]+" repla …
2
votes

Is java.util.regexp efficient enough?

Overall, the java.util.regex (not "regexp") package is at least as good any other Java regex library, including Jakarta ORO (yo …
0
votes

How do I properly store and retrieve internationalized Strings in properties files?

As of JDK 1.6, Properties has a load() method that accepts a Reader. That means yo …
0
votes

What is the easiest/best/most correct way to iterate through the characters of a string in Java?

StringTokenizer is totally unsuited to the task of breaking a string into its individual characters. With String#split() you can do that easily by using a regex that matches nothing, …
4
votes

java Enum definition

Here's the explanation I like best: Groking Enum (aka Enum<E extends Enum<E>>) …
1
vote

Regex to find static (non final) variables

Instead of checking for the absence of a brace, I would look for a semicolon at the end: ^(?!.*\bfinal\b).*\bstatic\b.*;[ \t]*$ …
1
vote

Escape path separator in a regular expression

Is there any way to use a common regular expression that works in both Windows and UNIX systems ? Yes, just use a regex that matches both kinds of separator. …
4
votes

How do I tokenize input using Java’s Scanner class and regular expressions?

The name "Scanner" is a bit misleading, because the word is often used to mean a lexical analyzer, and that's not what Scanner is for. All it is is a substitute for the scanf() functi …
7
votes

Is there a Newline constant defined in Java like Environment.Newline in C#?

Be aware that this property isn't as useful as many people think it is. Just because your app is running on a Windows machine, for example, doesn't mean the file will be using Windows-style line s …
2
votes

How can I dynamically alter the Java LAF UIDefaults?

When you put the new color (for example) in the table, is it a Color object, or a ColorUIResource? As I understand it, the new value will only be taken up if the current value is …

1 2 3 4 5 6 next
15 30 50 per page