Merge pull request #649 from virginOne/master
Some checks failed
CI Script to build on self-hosted server / build (push) Has been cancelled

Fix the issue of not being able to import the JSON format
This commit is contained in:
Michael Christen 2024-07-10 16:36:54 +02:00 committed by GitHub
commit accf4e424b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -22,6 +22,7 @@ package net.yacy.cora.federate.solr.responsewriter;
import java.io.IOException;
import java.io.Writer;
import java.text.SimpleDateFormat;
import java.util.Collection;
import java.util.Date;
import java.util.List;
@ -156,6 +157,7 @@ public class FlatJSONResponseWriter implements QueryResponseWriter, EmbeddedSolr
public static final void writeDoc(final Writer writer, final SolrDocument doc) throws IOException {
JSONObject json = new JSONObject();
final Map<String, Object> fields = doc.getFieldValueMap();
SimpleDateFormat sdf=new SimpleDateFormat("YYYY-MM-DD'T'hh:mm:ssZ");
for (String key: fields.keySet()) {
if (key == null) continue;
Object value = doc.get(key);
@ -165,15 +167,16 @@ public class FlatJSONResponseWriter implements QueryResponseWriter, EmbeddedSolr
JSONArray a = new JSONArray();
json.put(key, a);
for (Object o: ((Collection<?>) value)) {
a.put(o);
a.put(o instanceof Date?sdf.format((Date)o):o);
}
} else {
json.put(key, value);
json.put(key, value instanceof Date?sdf.format((Date)value):value);
}
} catch (JSONException e) {
} catch (JSONException | IllegalArgumentException | NullPointerException e) {
throw new IOException(e.getMessage());
}
}
writer.write(json.toString());
writer.write(lb);
}