/HelloMenta/trunk/src/main/java/org/hellomenta/action/HelloAction.java |
---|
9,19 → 9,6 |
if (isEmpty(msg)) { |
msg = "Why you did not type anything?"; |
} |
System.out.println("====> " + msg); |
byte[] b = msg.getBytes(); |
for(int i : b) { |
System.out.println("=> " + i); |
} |
b = "ã".getBytes(); |
System.out.println("====> ã"); |
for(int i : b) { |
System.out.println("=> " + i); |
} |
output.setValue("msg", msg); |
return SUCCESS; |
} |