標籤:style blog http color os strong io 檔案
Note:
sql> source F:weibo.sql(執行相關sql檔案)
sql> select * from sina into outfile "/weibo.txt"(匯出相應資料到C:的weibo.txt)
1. mysql 5.0後其用戶端僅支援gbk,故可在sql> set names gbk;
例如:
set names gbk;/*Navicat MySQL Data TransferSource Server : localhost_3306Source Server Version : 50140Source Host : localhost:3306Source Database : sinaweiboTarget Server Type : MYSQLTarget Server Version : 50140File Encoding : 65001Date: 2013-12-16 09:16:41*/Create database `SinaData` DEFAULT CHARACTER SET gbk; use `SinaData`;SET FOREIGN_KEY_CHECKS=0;-- ------------------------------ Table structure for `xinlang`-- ----------------------------DROP TABLE IF EXISTS `xinlang`;CREATE TABLE `xinlang` ( `id` int(255) NOT NULL AUTO_INCREMENT, `person_id` varchar(255) DEFAULT NULL, `article` varchar(1000) DEFAULT NULL, `discuss` varchar(100) DEFAULT NULL, `transmit` varchar(255) DEFAULT NULL, `time` datetime DEFAULT NULL, PRIMARY KEY (`id`))ENGINE=MyISAM DEFAULT CHARSET=gbk;-- ------------------------------ Records of weibo-- ----------------------------INSERT INTO `xinlang` VALUES (‘1‘, ‘1646051850‘, ‘電影預言:指電影導演若干年前拍的電影中虛構的景象、語言在後來卻成為了現實,網友把這樣的電影內容稱為電影預言。本文列舉了三個電影預言案例……http://t.cn/S4K2hJ‘, ‘0‘, ‘0‘, ‘2011-11-29 13:26:24‘);
2. Eclipse中在Windows->Preferences->Content Types->Text->Default encoding:gbk設定後即可顯示中文亂碼