Service Temporarily Unavailable
The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.
Apache/2.0.55 (Win32) Resin/3.0.17 Server at localhost Port 80 <<more
现在的GUI tools好多啊!!!呵呵,当然Mysql也不逊色,今天用了一下,哇!好方便!!!很多的复杂操作不再要握们手动去操作了!!呵呵,还有Mysql 的UML工具哦!!呵呵!!!相信Mysql GUI tools绝对不逊色与其他 的第三方GUI tools!!下载地址:http://www.mysql.org/downloads/gui-tools/5.0.html
赶快去下载哦!!!手动设置编码好麻烦!!!备份/还原一键即可哦!!呵呵带着走也方便
/*
忙了一下午,终于搞好了,我的mysql5.0是for windows
请先在my.ini这个文件里面吧default-character-set=gbk
再建库bo,表mo(id char(6))
*/
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
public class DbCon {
public static void main(String []argv)
{
try
{
Class.forName("org.gjt.mm.mysql.Driver");
System.out.println("Create Sucess!!");
Connection con=DriverManager.getConnection("jdbc:mysql://localhost/bo?user=root&password=nihaoma&useUnicode=true&characterEncoding=GBK");
System.out.println("Connect Sucess!!");
//ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE
Statement st=con.createStatement();
ResultSet su=st.executeQuery("select * from mo");
while (su!=null && su.next())
{
System.out.println(su.getString("id"));
}
st.execute("insert into mo values('人')");
//System.out.print(ne);
//System.out.println("end...");
}
catch(ClassNotFoundException e)
{
}
catch(SQLException e)
{
}
catch(Exception e)
{
}
}
}
上周在计算机房里面不知道Mysql的密码,我尝试了类似Linux的解决办法利用结束mysqld进程再mysqld-nt --skip-grant-tables 再用mysqladmin -uroot flush-privileges password "12345"修改密码不成功!!
无意中想到了:
第一:结束进程mysql-nt这个
第二:从官方网站下载源码包或者在安装过mysql的机子里面吧data/mysql目录cp过去覆盖就可以了!!!
第三:mysql成功!!!密码为你cp过去的密码
Tomcat5.5版本:
(假设都采用默认的配置)
创建目录: D:\tomcat5\webapps\ROOT\WEB-INF\classes (存放JavaBean包);
创建目录: D:\tomcat5\webapps\ROOT\WEB-INF\classes\com
//Bean code File name:bean.class
package com;
public class bean
{
String mName;
public bean()
{
mName="init";
}
public String getName()
{
return mName;
}
public void setName(String s)
{
mName=s;
}
}
//JSP code File name:testbean.jsp
<%@ page contentType="text/html;charset=gb2312"%>
<%@ page import="com.*"%>
<html>
<head>
<title>Test</title>
</head>
<body>
<jsp:useBean id="hello" class="com.bean"/>
<%
out.print(hello.getName()+"<br>");
hello.setName("
我给了你了
");
out.print(hello.getName());
%>
</body>
</html>