We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Files with UTF8 characters on windows sometimes generate this exception:
javax.xml.bind.UnmarshalException - with linked exception: [java.io.UTFDataFormatException: Invalid byte 2 of 2-byte UTF-8 sequence.]
A temporary solution is to include the following argument in the java command:
java -Dfile.encoding=utf-8 -jar ProductClient.jar ...
The text was updated successfully, but these errors were encountered:
This is likely an exception from the eqmessageutils project. One option is to set the encoding using an InputStreamReader interface wrapped around the input stream: https://github.com/usgs/eqmessageutils/blob/master/src/gov/usgs/earthquake/quakeml/Quakeml_1_2_Parser.java#L128
Sorry, something went wrong.
No branches or pull requests
Files with UTF8 characters on windows sometimes generate this exception:
A temporary solution is to include the following argument in the java command:
The text was updated successfully, but these errors were encountered: