All things JythonicA blog tracking jython developmentsJython and Swing- June 29, 2004 Not so useless Jython from the Useless Python blog . A basic example of how to get going with Jython and Swing! The following is an example of using the Jython interactive interpreter from the Windows 2000 command prompt. On this page, we demonstrate several Jython basics, including: use of the jython interpreter from the MS Windows 2000 command prompt collection of user input with javax.swing.JOptionPane.showInputDialog() conversion of strings to integers, and integers to strings, plus...http://uselesspython.com/Jython_Swing_Basics.html Write Your Own Mini Aggregator with Jython and Rome!- June 28, 2004 Rome is a new java API for reading RSS and ATOM feeds. Here is a quick demonstration of what you can do with it using Jython, the Java Scripting Swiss Army Knife. Ok, you will need to add both the latest build of Rome and JDOM to your classpath. Next fire up jython or if you like use the Jython Console which will make exploring the ROME api a little easier. Here is the source code then of a simple aggregator written in jython. from java.net import URL from com.sun.syndication.feed.synd...http://wiki.java.net/bin/view/Javawsxml/Rome |