Código PHP:
import com.sun.syndication.feed.synd.*;
import com.sun.syndication.io.*;
import com.totsp.xml.syndication.content.ContentModule;
import java.io.*;
import java.net.URL;
import java.util.*;
import java.lang.*;
import java.lang.Object;
import com.sun.syndication.io.SyndFeedInput;
public class Main
{
public static void main(String[] args) throws IOException, FeedException
{
SyndFeedInput input;
input = new SyndFeedInput();
URL urlProcessed = new URL(args[0]);
// Load the feed, regardless of RSS or Atom type
SyndFeed feed = input.build(new XmlReader(urlProcessed));
}
}
/home/alex/Escritorio/java/JavaApplication10/src/javaapplication10/Main.java:24: cannot access org.jdom.Document
class file for org.jdom.Document not found
SyndFeed feed = input.build(new XmlReader(urlProcessed));
1 error
BUILD FAILED (total time: 0 seconds)
A ver si alguien sabe que puede ser, utilizo NetBeans.