* use ISO-8859-1 as http default charset

This commit is contained in:
Reinhard Pointner 2009-08-10 12:09:17 +00:00
parent 3ff3a85289
commit e58947e6a4
1 changed files with 2 additions and 2 deletions

View File

@ -145,8 +145,8 @@ public final class WebRequest {
}
}
// use UTF-8 if charset cannot be determined
return Charset.forName("UTF-8");
// use http default encoding if charset cannot be determined
return Charset.forName("ISO-8859-1");
}