Thomas Darimont
Erfahrenes Mitglied
Hallo,
schaut mal hier:
Ausgabe:
Gruß Tom
schaut mal hier:
Java:
/**
*
*/
package de.tutorials;
import java.util.Properties;
/**
* @author thomas.darimont
*
*/
public class HTMLEntityTranslationExample {
/**
* @param args
*/
public static void main(String[] args) throws Exception {
Properties properties = new Properties();
// Findet man im resources.jar Beispielsweise unter:
// c:\Programme\Java\jdk1.6.0\jre\lib\resources.jar
properties
.load(HTMLEntityTranslationExample.class
.getClassLoader()
.getResourceAsStream(
"com/sun/org/apache/xml/internal/serializer/HTMLEntities.properties"));
char charValue = (char) Integer.parseInt((String) properties
.get("auml"));
System.out.println(charValue);
charValue = (char) Integer.parseInt((String) properties.get("aring"));
System.out.println((char) charValue);
}
}
Ausgabe:
Code:
ä
å
Gruß Tom