I'm running CF5 on Solaris. I have a Java class that I access from within a cf
page. When I pass a String to a Java Method, all Non-ASCII chars such as ???
are being replaced by a question mark '?'. I encounter this problem only on the
Solaris Installation. The same code runs correctly on a Windows installation. A
simple example to illustrate the problem: I have a Class Test with a simple
method that just returns the String argument: public static String test(String
s){ return(s); } In cf, I do <cfobject type='java' name='test' action='create'
class='Test'> <cfoutput>#test.test('???')#</cfoutput> On Solaris, I get ???, on
Windows I get ???. Any ideas? Thanx andri
vkunirs - 30 Nov 2004 09:11 GMT
hi
try to give the character format in the cf file.
Srinivas
cfdv - 30 Nov 2004 09:37 GMT
thanks, Srinivas
How can I give the character format?
with cfprocessingdirective? this is new in MX, and I'm running CF5.