Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My error is: "Invalid byte 1 of 1-byte UTF-8 sequence".

I am calling a Java method using Blaze DS.

share|improve this question

4 Answers

up vote 1 down vote accepted

Hi Nithi Make sure that "remoting-config.xml" destination id and source name are correct.

share|improve this answer

Your XML document has a BOM marker, because it was created with a Windows program.

Java does not support this out of the box.

Regarding BOM: http://www.unicode.org/faq/utf_bom.html

So either make sure your XML Document has no BOM marker, (if it is your ds config file), or use something like this in your InputStream:

(not my code) http://koti.mbnet.fi/akini/java/unicodereader/UnicodeInputStream.java.txt

Usage pattern:
 String enc = "ISO-8859-1"; // or NULL to use systemdefault
 FileInputStream fis = new FileInputStream(file);
 UnicodeInputStream uin = new UnicodeInputStream(fis, enc);
 enc = uin.getEncoding(); // check and skip possible BOM bytes
 InputStreamReader in;
 if (enc == null) in = new InputStreamReader(uin);
 else in = new InputStreamReader(uin, enc);
share|improve this answer

not enough details in the question.

my guess, looks like you are trying to read something as UTF-8 encoded and it is not valid UTF-8 encoded.

share|improve this answer
ByteArrayInputStream test = new ByteArrayInputStream( xml.trim().getBytes() );
Document document = null;
try
{
  document = dbf.newDocumentBuilder().parse( test );
} catch ( Exception e )
{
    System.out.println( "Fehler 1" + e.getMessage()) ;

  try
  {
    test.close();
    // ... that works: String xml_x = FkString.replace( xml, "<?xml version=\"1.0\" encoding=\"UTF-8\"?>", "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>" );
    // Replace UTF-8 to UTF8 ... works
    String xml_x = FkString.replace( xml, "<?xml version=\"1.0\" encoding=\"UTF-8\"?>", "<?xml version=\"1.0\" encoding=\"UTF8\"?>" );
    test = new ByteArrayInputStream( xml_x.trim().getBytes() );
    document = dbf.newDocumentBuilder().parse( test );
  } catch ( Exception e1 )
  {
    System.out.println( "Fehler 2" + e1.getMessage()) ;
  }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.