search for: printwriter

Displaying 2 results from an estimated 2 matches for "printwriter".

2014 Jan 26
2
[LLVMdev] [llmdev] fail to process llvm generated assembly on windows/mingw32
...BufferedOutputStream oOut = new BufferedOutputStream(new FileOutputStream(oFile)); targetMachine.assemble(asm, clazz.getClassName(), oOut); oOut.close(); (I use a java binding for llvm) Unfortunately, the assemble call fails with the error: org.robovm.llvm.LlvmException: java.io.PrintWriter:478:2: error: unknown directive .section .text$java_io_PrintWriter_checkError__Z_lookup,"xr" ^ java.io.PrintWriter:479:2: error: unknown directive .linkonce discard ^ java.io.PrintWriter:629:2: error: unknown directive .section .text$java_io_PrintWr...
2006 Jul 26
0
SAX Parsing and erb?
...inside a rhtml file. I also have partials that I want to wrap around content in the XML stream. However, I don''t have any clue how to pass an object to the SAX2Listener so it can combine the partials and the XML together. Normally, in java I would pass the HttpResponse object or the PrintWriter object to the SAX2Listener class. WHat''s the equivalent with erb? And how do I combine my partials with it as well? eRB is a pull type interaction, but SAX is a push, and it makes it hard. So here is a little example of what I''m thinking: Hi <%= @name %><br/>...