Tag Archives: Swing
Drawing Strings in Swing using Graphics2D
I’ve started a new project again, and this time I’m working on a speed-reader application using Java (more details on that later)
One of the problems that I’ve always had with Java Swing UIs is figuring out how to directly draw centered Strings while inside of a paintComponent(Graphics g) method of some JComponent
So let’s say you’re [...]
JTables + JDBC – Pt.1 Introduction
Consider this: you have a running Java application with a Swing front-end and a PostgreSQL database managing the data in the backend. You want to let your users view and modify the data in your database, but they don’t know a smidgen of SQL. Perhaps there is a way to (easily?) draw a GUI front-end [...]
Posted in Java, Tech Also tagged database, Java, JDBC, JTables, JTables + JDBC, postgreSQL 2 Comments
Speed Reader