Skip to content

Instantly share code, notes, and snippets.

@terrancesnyder
Created December 24, 2012 00:25
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save terrancesnyder/4366869 to your computer and use it in GitHub Desktop.
Save terrancesnyder/4366869 to your computer and use it in GitHub Desktop.
Bug with pentaho output servlet
var out = _step_.getTrans().getServletPrintWriter();
out.println("<H1>");
out.println("Hello World!");
out.println("ときょ 東京 コーヒー");
out.println("</H1>");
@mjmaax
Copy link

mjmaax commented Mar 1, 2014

Hello

I have the same problem with Kettle Data integration interface.
I try to extract data from an XML files and to insert them into table of a database.
For this, I wrote a transformation which contains 2 steps linked to each other :

  • step1 : extract data from XML
  • step2 : insert data into a table
    I mapped the fields of the flow (coming from xml) to the fields of the table.When I execute the transformation, the records are inserted into the table but all japanese characters are replaced by '?', just like you posted above.
    Since this is using the graphical interface, I have no idea on how to use your hack to fix this problem. Would you have an idea?

Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment