使用java,减去异常处理,就这么简单
FileOutputStream ostream = new FileOutputStream("\\\\host\\share");
PrintStream printStream = new PrintStream(ostream);
printStream.print("HELLO PRINTER");
printStream.close();
ostream.close();
File.open("\\\\host\\share") do |f|
f.print("HELLO PRINTER#{12.chr}")
end
虽然我从未尝试从 Ruby 进行打印,而且我没有可用于测试的 Windows 机器,但在我看来,您不想使用File
该类,而是使用IO
该类。您可以在此处查看其文档:http ://ruby-doc.org/core/classes/IO.html 。看起来它实际上具有 Windows 特定的选项,所以请看一下,如果它不是很有帮助,请告诉我原因。