Языковой инструмент: проверка правописания JAVA: [Ljava.lang.StackTraceElement;@a80548e
Я работаю над проектом, в котором я хочу проверить твиты, прежде чем использовать их в дальнейшем. И для того же, я использую JLanguageTool. Но во многих твитах это дает мне такие ошибки.
[Ljava.lang.StackTraceElement; @ a80548e java.lang.RuntimeException: не удалось проверить предложение (язык: английский (США))
Некоторые из ошибок перечислены здесь:
java.lang.RuntimeException: Could not check sentence (language: English (US)): '@bradfordmdc You probally can use google maps, and map out the roads, as red orange and green'
18/02/02 10:18:08 INFO FileScanRDD: Reading File path: file:///home/cloudsigma/FlumeData.1516386314346, range: 16777216-20971520, partition values: [empty row]
18/02/02 10:18:08 INFO FileScanRDD: Reading File path: file:///home/cloudsigma/FlumeData.1516386314346, range: 8388608-12582912, partition values: [empty row]
[Ljava.lang.StackTraceElement;@2b26ec8f java.lang.RuntimeException: Could not check sentence (language: English (US)): 'RT @arneltanyag: Experts Break Down The Difference Between Google Home and Amazon Echo t.co/hSKPFwA1dq' java.lang.RuntimeException: Could not check sentence (language: English (US)): 'RT @arneltanyag: Experts Break Down The Difference Between Google Home and Amazon Echo t.co/hSKPFwA1dq'
[Ljava.lang.StackTraceElement;@21f62236 java.lang.RuntimeException: Could not check sentence (language: English (US)): '@mvaltari Ok Google' java.lang.RuntimeException: Could not check sentence (language: English (US)): '@mvaltari Ok Google'
[Ljava.lang.StackTraceElement;@4c1c7b85 java.lang.RuntimeException: Could not check sentence (language: English (US)): 'RT @androidcentral: How to use face unlock (trusted face) on the @Google #Pixel2 t.co/PmfRJ2tWcJ' java.lang.RuntimeException: Could not check sentence (language: English (US)): 'RT @androidcentral: How to use face unlock (trusted face) on the @Google #Pixel2 t.co/PmfRJ2tWcJ'
[Ljava.lang.StackTraceElement;@47b2883a java.lang.RuntimeException: Could not check sentence (language: English (US)): 'RT @GoddessCallie_: I'm Back Now Start Sending.
' java.lang.RuntimeException: Could not check sentence (language: English (US)): 'RT @GoddessCallie_: I'm Back Now Start Sending.
'
[Ljava.lang.StackTraceElement;@3553d2d6 java.lang.RuntimeException: Could not check sentence (language: English (US)): 'Continued learning, whether self motivated or part of your job, is important to you and your career. ' java.lang.RuntimeException: Could not check sentence (language: English (US)): 'Continued learning, whether self motivated or part of your job, is important to you and your career. '
[Ljava.lang.StackTraceElement;@17d52a4 java.lang.RuntimeException: Could not check sentence (language: English (US)): 'RT @PornPanic: As I've warned, the government definition of "porn sites" doesn't just mean Pornhub. ' java.lang.RuntimeException: Could not check sentence (language: English (US)): 'RT @PornPanic: As I've warned, the government definition of "porn sites" doesn't just mean Pornhub. '
[Ljava.lang.StackTraceElement;@5ea3e303 java.lang.RuntimeException: Could not check sentence (language: English (US)): 'Google is getting into the content recommendation mix t.co/Zy8M6ZEpiP @ginnymarvin @marketingland #marketingtips #biztips' java.lang.RuntimeException: Could not check sentence (language: English (US)): 'Google is getting into the content recommendation mix t.co/Zy8M6ZEpiP @ginnymarvin @marketingland #marketingtips #biztips'
[Ljava.lang.StackTraceElement;@a80548e java.lang.RuntimeException: Could not check sentence (language: English (US)): 'RT @esaagar: NEW: Google Ends Fact Check Project, Crediting @_EricLieberman_ Investigation With Decision t.co/cZC9AI3J1v via @Daily…' java.lang.RuntimeException: Could not check sentence (language: English (US)): 'RT @esaagar: NEW: Google Ends Fact Check Project, Crediting @_EricLieberman_ Investigation With Decision t.co/cZC9AI3J1v via @Daily…'
Метод, который я написал:
public static String SpellCheck(String text) {
// String clean = text.replaceAll("\\P{Print}", "");
String query = text;
try {
List<RuleMatch> matches = langTool.check(query);
String result = "";
int lastPos = 0;
String tmp = "";
for (RuleMatch ma : matches) {
try {
tmp = ma.getSuggestedReplacements().get(0);
result += query.substring(lastPos, ma.getFromPos());
result += tmp;
lastPos = ma.getToPos();
} catch (Exception e) {
return text;
}
}
if (lastPos < query.length()) {
result += query.substring(lastPos, query.length());
}
return result;
} catch (Exception e) {
System.out.print("Exception for " + e.getStackTrace());
return text;
}
}
Как я могу устранить ошибки?