anand
anand

Reputation: 392

Printing Labels in Java swing application

I have to develop an java swing application that will take customer details (name, address, contact number) and print each set on information to sticky labels. There are 10 labels per A4 sheet in a 5 x 2 matrix (each cell size 96 x 50.8 mm).

Does anyone know if there are other java API's out there designed specificly for printing?

Upvotes: 1

Views: 257

Answers (1)

An SO User
An SO User

Reputation: 24998

Like said, java.awt.print is the package to look up. There are official tutorials avialable here: http://docs.oracle.com/javase/tutorial/2d/printing/

Upvotes: 3

Related Questions