Quando busco um dado do Banco de Dados pela JDBC, os caracteres com acentos e cedilhas não aparecem. Em seu lugar aparece o caracter (?).
sSql = "select codCur as curso, nome from Cursos ";
try {
stmt = con.createStatement();
rs = stmt.executeQuery(sSql);
while(rs.next()){
int iCurso = rs.getInt("curso");
String sNome = new String(rs.getString("nome").getBytes(), "CP850");
O problema ocorre já no rs.getString(“nome”).
Desde já agradeço a atenção.