Search in sources :

Example 1 with JSONArray

use of org.apache.tapestry5.json.JSONArray in project JsonPath by jayway.

the class TapestryJsonProvider method setArrayIndex.

@Override
public void setArrayIndex(final Object array, final int index, final Object newValue) {
    Object v = newValue == null ? JSONObject.NULL : newValue;
    JSONArray list = (JSONArray) array;
    list.put(index, v);
}
Also used : JSONArray(org.apache.tapestry5.json.JSONArray) JSONObject(org.apache.tapestry5.json.JSONObject)

Example 2 with JSONArray

use of org.apache.tapestry5.json.JSONArray in project JsonPath by jayway.

the class TapestryJsonProviderTest method a_filter_can_be_applied.

@Test
public void a_filter_can_be_applied() {
    JSONArray fictionBooks = using(TAPESTRY_JSON_CONFIGURATION).parse(JSON_DOCUMENT).read("$.store.book[?(@.category == 'fiction')]");
    assertThat(fictionBooks.length()).isEqualTo(3);
}
Also used : JSONArray(org.apache.tapestry5.json.JSONArray) Test(org.junit.Test)

Example 3 with JSONArray

use of org.apache.tapestry5.json.JSONArray in project IR_Base by Linda-sunshine.

the class DocAnalyzer method LoadJsonDoc.

// Load a document and analyze it.
protected void LoadJsonDoc(String filename) {
    _Product prod = null;
    JSONArray jarray = null;
    try {
        JSONObject json = LoadJSON(filename);
        prod = new _Product(json.getJSONObject("ProductInfo"));
        jarray = json.getJSONArray("Reviews");
    } catch (Exception e) {
        // fail to parse a json document
        System.err.print('X');
        return;
    }
    for (int i = 0; i < jarray.length(); i++) {
        try {
            _Post post = new _Post(jarray.getJSONObject(i));
            if (post.isValid(m_dateFormatter)) {
                long timeStamp = m_dateFormatter.parse(post.getDate()).getTime();
                String content;
                // append document title into document content
                if (Utils.endWithPunct(post.getTitle()))
                    content = post.getTitle() + " " + post.getContent();
                else
                    content = post.getTitle() + ". " + post.getContent();
                // int ID, String name, String prodID, String title, String source, int ylabel, long timeStamp
                _Doc review = new _Doc(m_corpus.getSize(), post.getID(), prod.getID(), post.getTitle(), content, post.getLabel() - 1, timeStamp);
                if (this.m_stnDetector != null)
                    AnalyzeDocWithStnSplit(review);
                else
                    AnalyzeDoc(review);
            }
        } catch (ParseException e) {
            System.out.print('T');
        } catch (JSONException e) {
            System.out.print('P');
        }
    }
}
Also used : JSONObject(json.JSONObject) structures._Doc(structures._Doc) structures._Product(structures._Product) JSONArray(json.JSONArray) JSONException(json.JSONException) ParseException(java.text.ParseException) JSONException(json.JSONException) InvalidFormatException(opennlp.tools.util.InvalidFormatException) ParseException(java.text.ParseException) IOException(java.io.IOException) FileNotFoundException(java.io.FileNotFoundException) structures._Post(structures._Post)

Example 4 with JSONArray

use of org.apache.tapestry5.json.JSONArray in project IR_Base by Linda-sunshine.

the class HTSMAnalyzer method LoadNewEggDoc.

// Load a document and analyze it.
public void LoadNewEggDoc(String filename) {
    JSONObject prod = null;
    String item;
    JSONArray itemIds, reviews;
    try {
        JSONObject json = LoadJSON(filename);
        prod = json.getJSONObject(m_category);
        itemIds = prod.names();
        System.out.printf("Under %s category, Number of Items: %d\n", m_category, itemIds.length());
    } catch (Exception e) {
        System.out.print('X');
        return;
    }
    for (int i = 0; i < itemIds.length(); i++) {
        try {
            item = itemIds.getString(i);
            reviews = prod.getJSONArray(item);
            for (int j = 0; j < reviews.length(); j++) {
                if (this.m_stnDetector != null)
                    AnalyzeNewEggPostWithSentence(new _NewEggPost(reviews.getJSONObject(j), item));
                else
                    AnalyzeNewEggPost(new _NewEggPost(reviews.getJSONObject(j), item));
            }
        } catch (JSONException e) {
            System.out.print('P');
            e.printStackTrace();
        } catch (ParseException e) {
            e.printStackTrace();
        }
    }
}
Also used : JSONObject(json.JSONObject) JSONArray(json.JSONArray) structures._NewEggPost(structures._NewEggPost) JSONException(json.JSONException) ParseException(java.text.ParseException) JSONException(json.JSONException) IOException(java.io.IOException) InvalidFormatException(opennlp.tools.util.InvalidFormatException) FileNotFoundException(java.io.FileNotFoundException) ParseException(java.text.ParseException)

Example 5 with JSONArray

use of org.apache.tapestry5.json.JSONArray in project IR_Base by Linda-sunshine.

the class MultiThreadedLMAnalyzer method LoadJsonDoc.

// Load a document and analyze it.
@Override
public void LoadJsonDoc(String filename) {
    _Product prod = null;
    JSONArray jarray = null;
    try {
        JSONObject json = LoadJSON(filename);
        prod = new _Product(json.getJSONObject("asin"));
        jarray = json.getJSONArray("related");
    } catch (Exception e) {
        // fail to parse a json document
        System.err.print('X');
        return;
    }
    for (int i = 0; i < jarray.length(); i++) {
        try {
            _Post post = new _Post(jarray.getJSONObject(i));
            if (post.isValid(m_dateFormatter)) {
                long timeStamp = m_dateFormatter.parse(post.getDate()).getTime();
                String content;
                // append document title into document content
                if (Utils.endWithPunct(post.getTitle()))
                    content = post.getTitle() + " " + post.getContent();
                else
                    content = post.getTitle() + ". " + post.getContent();
                // int ID, String name, String prodID, String title, String source, int ylabel, long timeStamp
                _Doc review = new _Doc(m_corpus.getSize(), post.getID(), prod.getID(), post.getTitle(), content, post.getLabel() - 1, timeStamp);
                if (this.m_stnDetector != null)
                    AnalyzeDocWithStnSplit(review);
                else
                    AnalyzeDoc(review);
            }
        } catch (ParseException e) {
            System.out.print('T');
        } catch (JSONException e) {
            System.out.print('P');
        }
    }
}
Also used : JSONObject(json.JSONObject) structures._Doc(structures._Doc) structures._Product(structures._Product) JSONArray(json.JSONArray) JSONException(json.JSONException) ParseException(java.text.ParseException) JSONException(json.JSONException) InvalidFormatException(opennlp.tools.util.InvalidFormatException) ParseException(java.text.ParseException) IOException(java.io.IOException) FileNotFoundException(java.io.FileNotFoundException) structures._Post(structures._Post)

Aggregations

JSONArray (json.JSONArray)4 JSONException (json.JSONException)4 JSONObject (json.JSONObject)4 JSONArray (org.apache.tapestry5.json.JSONArray)4 FileNotFoundException (java.io.FileNotFoundException)3 IOException (java.io.IOException)3 ParseException (java.text.ParseException)3 InvalidFormatException (opennlp.tools.util.InvalidFormatException)3 JSONObject (org.apache.tapestry5.json.JSONObject)2 Test (org.junit.Test)2 structures._Doc (structures._Doc)2 structures._Post (structures._Post)2 structures._Product (structures._Product)2 structures._NewEggPost (structures._NewEggPost)1 structures._ParentDoc (structures._ParentDoc)1 structures._ParentDoc4DCM (structures._ParentDoc4DCM)1