Tagged Questions
0
votes
3answers
41 views
Print the whole program layout
I have made a Java program (JFrame based) using Netbeans,
I would like to know if it is possible to print the layout of the program
I wish to have a button and set the function to "print"
and the ...
1
vote
6answers
82 views
What's a good-practice replacement of System.out.println?
My application has to output content for the user. Throughout all my classes I've just been using System.out.println, but since the program isn't intended to be run by command line this isn't really ...
0
votes
1answer
41 views
How to print a page using button by selecting printer option in java
I want to print a page by clicking a button but the following code shows run time error. I have used the JFrame form as the printing page and added a JButton and a JTextField. There is the error in ...
0
votes
1answer
65 views
Print JLabel with JTable in desktop application
How to print JLabel with JTable in Java Standalone application?
I have created GUI in which I added some label and one jable . I want to print this GUI. I also used table API but it print only table. ...
-4
votes
0answers
42 views
Print JFrame table and component data in normal format [closed]
Am doing a project on medical shop bill in Java. My JFrame contains table, textfield and labels. I want to print the data on frame as normal bill form.
How to print JFrame table and component data ...
0
votes
1answer
42 views
Java Printer: send documents to remote printers
I'm dealing with a situation in which my swing application system has to send documents to a remote printer within a network that isn't the local one, but to which I have access (routers between ...
0
votes
2answers
53 views
Simple page size setting when printing JTextPane?
I have a really simple Print function in my application that prints the contents of a Jtextpane. I want to set the default page size to A4 but after searching around I find lots of ways that involve ...
0
votes
1answer
65 views
Printing multiple components
I am trying to send a JTable and a JPanel to the printer in a single print job like this :
PrintRequestAttributeSet attr = new HashPrintRequestAttributeSet();
...
0
votes
1answer
79 views
printing only filled data from JTable with logo
my program hava a JTable with 100 blank rows.
Let user fills only 10 rows. Now he want to print only the filled rows with a logo on the top.
How to do it ?
Here is the code i used:
if(e.getSource() ...
1
vote
2answers
212 views
Printing Bills In Java Swing [closed]
I have made a Billing software in Java ( Using Netbeans ) , All the components are working perfectly now , except the Printing section ...
I want to Draw a bill ( With the Store Name , Address , etc ...
2
votes
1answer
82 views
Adding a Print Button to JPanel [duplicate]
I have a JPanel, with some components like buttons, labels, table, etc.
What I want to do is to add a functionality (a jButton), that clicking on that button directs me to print the whole panel, ...
0
votes
0answers
36 views
JTable - multiple print
I'm trying to set up multiple printing for a JTable very wide. So I have to cut my table.
To do this, since I can’t directly clone my JTable (the method clone () does not work on the JTable … ), So I ...
0
votes
0answers
50 views
Reworking Java/Swing Printjob code for 1.5 compatibility - how much has to change?
I've written a pretty simple Printing method using Java 1.6, which now must be 1.5 compatible. Reading through 1.5 documentation now, but have a feeling my entire workflow might need modifying. Can ...
-1
votes
2answers
121 views
Java TextArea and String (print only 1 word of String)
I got problem with my TextArea
String A contain text a,b,c,d
I converted String to textarea using method TextArea.setText(A);
My problem is that textarea print out abcd instead of it I want it printed ...
2
votes
0answers
191 views
Java - Print Dialog for full screen window
I have a full screen application, and I need to print. For other popup screens I've used JInternalFrames, but now I need to use PrintJob. My current code is as follows:
PrinterJob printJob = ...
3
votes
1answer
241 views
Java - How to print row numbers on each page?
I am struggling with printing JTables in my own way. This what I would like to obtain when printing :
Page 1 Page 2 Page 3
| 1 2 3 | | 4 5 6 | | 7 8 9 |
|1 ...
2
votes
0answers
97 views
Java printing full scrollpane not only the visible part
I have a class to print a component at a time. The things I want to print I, I group in JPanel. I therefore have a JPanel (inside a jframe to display it on the screen) with 4 JScrollPanes (syncronized ...
2
votes
0answers
155 views
JTable printing. How can I make fonts bigger?
I am trying to print a JTable with the standard .print() method.
I am using the code from this thread and it works.
However the printed table appears with very small letters. My JTable has a font ...
3
votes
1answer
305 views
Printing multiple JTables as one job — Book object only prints 1st table
For a number of reasons, I'm trying to combine the output of multiple JTables into a single print job. After tearing my hair out trying to build PDFs, and combing the Java API, I settled on the Book ...
0
votes
1answer
92 views
Printing a Bufferedimage object in specific size
I have created a buffered image with specific pixel size and i tried to send it to printer dialog but when i send it to printer the size is way to big for my goal (card printer)
this is my object :
...
0
votes
2answers
332 views
How to print a JTable object in the Java application
Question Now once the data is fetched from the database and shown in the JTable object "table" embedded in the scrollPane, how do we create a print job that makes it possible to print the displayed ...
4
votes
1answer
184 views
Force paintAll() to draw an invisible JPanel and its components?
I'm working on printing a series of JPanels to a Printable, the basic printing interface that supplies a Graphics object that you draw what you want printed. If I have a "live" JPanel, that is in the ...
-2
votes
1answer
379 views
AWT-EventQueue-0" java.lang.NullPointerException
Thank you for your help guys, i have got the code to look like below, it is not all mine but i have been editing it to try and do what i want, i am almost done i am just getting one error message at ...
0
votes
1answer
125 views
Print a JFrame to a page Java
How would you print a jFrame in java?
e.g
JFrame myJFrame = new JFrame("Window");
printClass.print(myJFrame);
0
votes
0answers
22 views
Printing a java JPanel comes out blown out [duplicate]
Possible Duplicate:
Printing a JPanel comes out as blown up screen shots
am printing a JPanel where if i send the JPanel directly to the printer the image comes out blown out and if a print ...
1
vote
1answer
777 views
How can I print a custom paper size (cheques 8“ x 4”)?
I am trying to print a custom paper size from a Java applet. I have set the paper size but it is being ignored.
I have also tried using the book method as I have seen something about this helping to ...
2
votes
1answer
146 views
Java Swing Print - JTextPanel.Print
Well, I don't speak English but I'll try. First I have a problem, I need to print a Ticket of a Company, my program it's ok but when I try to print, the margins of the printer are 24 25 15 18 or some ...
1
vote
1answer
264 views
How to print a Java Swing UI which contains lots of component?
Requirement Description:
(1) I designed a UI with Java Swing Components which contains JTextFiled, JLabel, and JTable.
(2) The JTable was wrapped in a JScrollPanel due to UI size limitation.
...
0
votes
1answer
285 views
Java GUI printing blank page
I'm working with a Java GUI and I want to get a single panel to print. I get the prompt to come up, and I get something to print, but the problem is that something is just a blank page.
Below is all ...
1
vote
1answer
48 views
print of jeditor pane
In swing i have a component JEditorPane with JScrollPane i want to take print out of the content of jeditorpane. and i should have the flexibility to change the heading of printing page at runtime. I ...
0
votes
1answer
185 views
Having trouble printing a JTable
For my french verb conjugation program I trying to include an option to print a conjugation (in table form)
However the problem is that it prints a blank box, I have read some places that this is ...
4
votes
2answers
145 views
Program a button be pressed a maximum of once every 5 seconds in java
For a current project we need to allow a user only to press a button once every 5 or so seconds. We use a button to start a print job but we need to stop users from spamming the button and starting a ...
2
votes
2answers
789 views
Printing a JFrame and its components
I have been working in a big program and one of its functionalities should be to print the contents of the main window. I checked the API and found this example:
...
2
votes
1answer
223 views
JComboBox displaying invisible drop-down menu
This is my first question on stackoverflow and I'm in need of some help.
As part of a grander java application, I would like to bring up a JDialog with a couple of JComboBoxes querying the user to ...
0
votes
1answer
214 views
control the size of the panel on printed page
i want to print jpanel with two tables . Two problems i faced , the first one is the Accuracy of the printed image is not very good. the second how can i control the size of the jpanel on the printed ...
1
vote
1answer
139 views
Setting to print JFrame content with thermal printer
I have written code to send a JFrame's content to the laser printer. It works for me, but the same code does not work for a thermal printer. There may be a need to send some setting to the printer. It ...
2
votes
4answers
1k views
How to print multiple header lines with MessageFormat using a JTable
I have a table called table and its filled with data, I also have a MessageFormat header I want to use as a header to print the JTable this is the MessageFormat:
MessageFormat header = new ...
0
votes
1answer
88 views
Perform printing and saving job sequentially
I have to print a bill. The bill design has been made using Java Graphics2D and some parts of the bill are filled using retrieval of text from Java Applet's JTextFields. It's working fine. But what I ...
0
votes
1answer
159 views
How to print the text from a TextArea using a jButton in java?
How can I print the texts from a TextArea using a jButton? I'm using netbeans, btw. Can anyone help me? It's for my midterm project in school.
0
votes
3answers
190 views
how to make JTextPane the size of a piece of paper?
OK, So i finally figured out how to print a JTextPane, and really have a fully functioning document editor.
Anyway, Can I make the JTextPane the size of a piece of paper (with page breaks) So you ...
1
vote
2answers
901 views
Java - Print document with dialog?
How do I open up a print dialog box where you select your printer, page details, etc to print A SPECIFIED DOCUMENT OR JTEXTPANE?
Please help!
note: getDesktop().print gives me an error about printer ...
0
votes
1answer
636 views
java: printing the content of JFrame
I am making the application for printing the content of JFrame .It works properly but my problem is that I have to call that application on "Print" JButton which is on different form such as Print ...
4
votes
1answer
179 views
How to detect the ‘Save as PDF…’ was picked from an AWT PrinterJob on OS X
I have the following code that shows a native print dialog in my java application.
PrinterJob job = PrinterJob.getPrinterJob();
PrintRequestAttributeSet atts = new HashPrintRequestAttributeSet();
...
0
votes
2answers
229 views
java:print out of Jframe
I want to take the print out of jFrame ,I can use printutility and all necessory for printing. Now my problem is that how to send the jFrame to printer for print out of jFrame?
Is it possible to take ...
1
vote
1answer
153 views
java: How to print JForm
I am having code of print a string, which is passed in the program itself. Here I am calling this code on Print button to get hard copy. Now I want to print a JForm in the same code, But I am not ...
0
votes
1answer
514 views
printing a JPanel
I am trying to print a JPanel called comp .It contains a tabel and some labels.When ever I
print the comp the table goes beyond the page's width. I really don't understand why this is
happening . ...
0
votes
1answer
400 views
I need to print a JTextArea and a JTable on the same page.
I am trying to print a jtable and jtextarea on the same page. I have tried this so far
private void printButtonActionPerformed(java.awt.event.ActionEvent evt) { ...
1
vote
1answer
161 views
Book class: How to print continually with no page separation
After this answer about how to print some predefined text before and after a JTable (not header and footer), I want to go further.
With the Book class, it is possible like the example to print ...
2
votes
1answer
310 views
Append text for printing before and after a JTable
I am trying to print a JTable and the print() method works great till I come to this scenario. Lets say I want to print before, in the first page only (not header) the text "Report" and on the end the ...
2
votes
1answer
338 views
JTable print with prefix text on top (not header / footer)
I would like to print a specific text on the top of a JTable , but not in every page (not header) just on the first page and/or a text on the end of the text but again not as a footer to each page but ...

