GeSHi (java):
/*--------------------------------------------------------------------------
RssGrabber class
*****************
By: HappyFace http://www.engineeringserver.com
Contact: info [@] engineeringserver.com
Version: unknown
Last updated: 01/August/2008
"*****************
Note: a demo that grabs and shows rss feeds
//----------------------------------------------------------------------*/
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.Collection;
import java.util.Iterator;
import com.sun.cnpi.rss.elements.Item;
import com.sun.cnpi.rss.elements.Rss;
import com.sun.cnpi.rss.parser.RssParser;
import com.sun.cnpi.rss.parser.RssParserException;
import com.sun.cnpi.rss.parser.RssParserFactory;
public class RssGrabber {
RssParser parser;
Rss rss;
public static void main
(String[] args
){ RssGrabber RG = new RssGrabber();
try {
RG.parser = RssParserFactory.createDefault();
RG.
rss = RG.
parser.
parse(new URL("http://www.engineeringserver.com/blog/feed"));
RG.showBlogPost();
} catch (RssParserException e) {
e.printStackTrace();
e.printStackTrace();
e.printStackTrace();
}
}
public void showBlogPost(){
while(i.hasNext()){
Item item = (Item)i.next();
System.
out.
println("Title: " + item.
getTitle());
System.
out.
println("Link: " + item.
getLink());
System.
out.
println("Description: " + item.
getDescription());
}
}
}
Created by GeSHI 1.0.7.20
outputTitle: Tyrian, the best vertical shooter now free on your psp!
Link:
http://www.engineeringser...ter-now-free-on-your-psp/Description:
Tyrian, a vertical shooter pc game that i played on my 468 dx2 66mhz years ago (yup those were the days!) Anyway, I was browsing the net a bit and noticed that this game went open source and someone converted the OpenTyrian version to the psp so guess what game i’m playing now? The [...]
Title: [NDS] Nintendo DS complete romlist!
Link:
http://www.engineeringser...endo-ds-complete-romlist/Description:
For those that are interested in the most up to date nintendo ds romlist, here’s a list i’ve posted on our forums that is compiled from various sources:
http://www.engineeringser...+game+discussions-b114.0/Note that we do NOT allow warez discussions on engineeringserver.com OR javaforums.net , the rom list is just for general purposes to see what games are out [...]
Title: Java ftp client sourcecode
Link:
http://www.engineeringser...va-ftp-client-sourcecode/Description: A simple ftp client that download files from a remote server, the functionalities are very basic (for demo purposes) but i'll work on more features later when I have the time. In the mean time you can play with it by downloading the sourcecode/classes below.
PLAIN TEXT
JAVA:
etc