1
在此先感謝。如何使用Java Applet將原始數據發送到打印機
我是Java Applet新手,我會告訴我的要求,希望能得到解決方案。
這是我的HTML代碼現在
<html>
<head><title>Test Print Via Applet</title></head>
<body>
<div id="text_to_print">
This is my Office<br />
This is my Office Address<br />
<center>Header of the Receipt</center><br />
1. Product 1 100.00<br />
2. Product 2 200.00<br />
------<br />
TOTAL 300.00<br />
------<br />
Thanks for the Purchase.
</div>
<input type="button" value="Print Directly to the Dot Matrix by using Applet" />
</body>
</html>
,如果有人點擊了「text_to_print」 DIV中抗衡按鈕應該在針式打印機打印的情況下直接打印對話框。
我的一位朋友告訴我,如果我們使用Applet,這是可能的。我在互聯網上關注這一點,但仍然無法爲我提供正確的解決方案。
請幫我解決這個問題。
再次預先感謝。