สร้าง XSD จาก Class ด้วย schemagen

สร้าง XSD จาก Class ด้วย schemagen

ทดลองสร้างด้วย MAVEN แก้ไข POM.XML <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.ncs.xsdgen</groupId> <artifactId>SchemaGen</artifactId>…
Automatic add new row at the end of table

Automatic add new row at the end of table

ต้องการสร้าง JTable สำหรับ กรอกข้อมูล โดย ไม่ต้องมีปุ่ม เพื่อ add new row, ใช้วิธี detect ว่ามีการใส่ข้อมูลที่ row ว่างท้ายตารางหรือไม่…
Special dialog ด้วย JOptionPane

Special dialog ด้วย JOptionPane

JOptionPane สามารถสร้าง dialog box ทั่วไปให้เราใช้งานได้ เช่น message box, confirm box หรือ input box แต่บางครั้งเราต้องการ dialog…
Java – comparator vs comparable

Java – comparator vs comparable

พอดีมีเรื่องให้ต้องเขียนโปรแกรมเพื่อช่วยการเรียงลำดับ แล้วมาสะดุดกับคำว่า Comparable และ Comparator ใน Java ว่ามันมีความแตกต่างกันอย่างไรและควรจะใช้งานอย่างไร จากที่อ่านหลายๆกระทู้ใน stackoverflow และเว็บอื่นๆ พอสรุปคร่าวๆว่าที่แนะนำการใช้งานโดยอิงจาก natural order โดยเค้าจะแนะนำว่า…