Tema: Error JDom
Ver Mensaje Individual
  #1 (permalink)  
Antiguo 16/10/2008, 02:11
Tecnitek
 
Fecha de Ingreso: agosto-2008
Mensajes: 11
Antigüedad: 16 años, 4 meses
Puntos: 0
Error JDom

Buenas, estoy intentando parsear un documento XML y no hay manera.

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[] argsthrows IOExceptionFeedException
    
{
                
                
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));

    }

Me da el siguiente error:
/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.