I used these tags and codes to connect to a DB inserting and selceting unicode characters and it worked
<%@ page import="java.sql.*" %>
<%@ page import="java.util.Properties" %>
<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8" %>
<% request.setCharacterEncoding("utf-8");%>
.....
Properties props = new Properties();
props.put ("user", userName);
props.put ("password", userPsw);
props.put ("charSet", "UTF-8");
con = DriverManager.getConnection (url, props);
I could insert and select data from my DB this way
but there is still a problem when I use Jbuilder to edit and run my jsp page
how can I configure and use Jbuilder to create
a jsp page with utf-8 unicode?
I changed project properties to support unicode utf8 but it doesn't help