私は、WebサービスのGETリクエストを呼び出すときの応答を持っていません

user12228689:

私は宿題の問題で助けを必要と学生です。事は、私はプロジェクトの同じフォルダに保存されていることをxmlファイルを表示するためにSAXパーサーを使用してREST Webサービスを書いたということです。問題は、私は私がそれに提供パスを使用する場合、それは何も起きていないということです。私はおそらく私のコードで何かを間違ってやっています。ここにあります:

package com.crunchify.restjersey;

import java.io.IOException;

import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
import javax.xml.parsers.ParserConfigurationException;
import javax.xml.parsers.SAXParser;
import javax.xml.parsers.SAXParserFactory;

import org.xml.sax.Attributes;
import org.xml.sax.SAXException;
import org.xml.sax.helpers.DefaultHandler;

@Path("/saxbooksxml")
public class SaxBooksXml {

    public SaxBooksXml(){}

    @GET
    @Produces(MediaType.APPLICATION_XML)
    public void gofindsaxbooks(){
        SAXParserFactory factory = SAXParserFactory.newInstance();
        SAXParser saxParser = null;
        try {
            saxParser = factory.newSAXParser();
        } catch (ParserConfigurationException e1) {
            // TODO Auto-generated catch block
            e1.printStackTrace();
        } catch (SAXException e1) {
            // TODO Auto-generated catch block
            e1.printStackTrace();
        }
        DefaultHandler handler = new DefaultHandler(){
            boolean bauthor = false;
            boolean btitle = false;
            boolean bgenre = false;
            boolean bprice = false;
            boolean bpublish_date = false;
            boolean bdescription = false;

            public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException{
                if(qName.equalsIgnoreCase("author")){
                    bauthor = true;
                }
                if(qName.equalsIgnoreCase("title")){
                    btitle = true;
                }
                if(qName.equalsIgnoreCase("genre")){
                    bgenre = true;
                }
                if(qName.equalsIgnoreCase("price")){
                    bprice = true;
                }
                if(qName.equalsIgnoreCase("publish_date")){
                    bpublish_date = true;
                }
                if(qName.equalsIgnoreCase("description")){
                    bdescription = true;
                }
            }

            public void endElement(String uri, String localName, String qName) throws SAXException{

            }

            public void characters(char ch[], int start, int lenght) throws SAXException{
                if(bauthor){
                    System.out.println("author: "+new String(ch, start, lenght));
                    bauthor = false;
                }
                if(btitle){
                    System.out.println("title: "+new String(ch, start, lenght));
                    btitle = false;
                }
                if(bgenre){
                    System.out.println("genre: "+new String(ch, start, lenght));
                    bgenre = false;
                }
                if(bprice){
                    System.out.println("price: "+new String(ch, start, lenght));
                    bprice = false;
                }
                if(bpublish_date){
                    System.out.println("publish_date: "+new String(ch, start, lenght));
                    bpublish_date = false;
                }
                if(bdescription){
                    System.out.println("description: "+new String(ch, start, lenght)+"\n");
                    bdescription = false;
                }
            }

        };

        try {
            saxParser.parse("Books.xml", handler);
        } catch (SAXException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }
}

これは私が解析しようとしているファイルの一部のプリントです。考え方はまったく同じブラウザ上に表示することです。

ここでは、画像の説明を入力します。

マイクAdamenko:

あなたのメソッドのgofindsaxbooks戻りvoid

以下のようにそれを変更します。

        @GET
        @Produces(MediaType.APPLICATION_XML)
        public Response gofindsaxbooks()
        {

            return Response.status(200).entity("Test XML created").build();
        }

おすすめ

転載: http://43.154.161.224:23101/article/api/json?id=362507&siteId=1