- 浏览: 374545 次
- 性别:
- 来自: 四川
最新评论
文章列表
================================jiekou.py
# coding=utf-8
'''
Created on 2017年5月9日
@author: chenkai
'''
import bottle
import urllib
import struct
from getscoretext import GetScore
def geturltoutf8(srcString):
unquotedString = urllib.unquote(srcString)
#print repr(unquotedString)
textStr ...
=======================get请求
# coding=utf-8
'''
Created on 2017年5月9日
@author: chenkai
'''
import bottle
def check_login(username, password):
if username == 'kaige' and password == '123456':
return True
else:
return False
@bottle.route('/login')
def login():
if bottle. ...
import urllib
def geturltoutf8(srcString):
unquotedString = urllib.unquote(srcString)
#print repr(unquotedString)
textString = unquotedString.decode('utf-8')
#print textString
return textString
public class stringToAscii {
public static void main(String[] args) {
System.out.println("a="+stringToAscii("a"));
System.out.println("z="+stringToAscii("z"));
System.out.println("A="+stringToAscii("A"));
System.out.println("Z= ...
1、在cmd窗口中,进入到python的文件夹内的 Scripts内,我的目录地址是:D:\Python\Scripts
命令行输入:easy_install pip
2.运行结束后,安装PyYAML and NLTK ,命令行输入:pip install pyyaml nltk
会有很多进度条,最后显示successfully 。。这样就将nltk安装完成
3、然后进入Python命令行敲入下面的代码,进入NLTK数据源下载界面:
>>>import nltk
>>>nltk.download()
这里我只是用了book ...
转:https://blog.csdn.net/u011001084/article/details/78980299
使用库:用Python 进行机器学习及情感分析,需要用到两个主要的程序包:nltk 和 scikit-learn
nltk 主要负责处理特征提取(双词或多词搭配需要使用nltk 来做)和特征选择(需要nltk 提供的统计方法)。
scikit-learn 主要负责分类算法,评价分类效果,进行分类等任务。
1.特征提取和特征选择(选择最佳特征)
2.赋予类标签,分割开发集和测试集
3.构建分类器,检验分类准确度,选择最佳分类算法
4.存储和使用最佳分类器进行分类,分类结果为概 ...
1.找到mysql安装目录下的my.ini文件
注释掉 sql-mode="STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"
前面加上# 符号就注释掉了,
2.blob字段类型转为text 类型 即可
1.mysql数据库连接字符编码
url ="jdbc:mysql://localhost:3306/test3?useUnicode=true&characterEncoding=UTF-8";
2.查看创表的字符集
show create table tablename;
3.查看数据库的编码
show variables like '%char%';
修改字符编码:
set character_set_server=utf8;
set character_set_database=utf8;
show variables like '%char%'; ...
导出oracle数据库某个用户下的所有表
exp 用户名/密码@服务器IP:1521/orcl file=d:\PCBMONDB.dmp full=y
导入
imp 用户名/密码@服务器IP:1521/orcl full=y file=d:\PCBMONDB.dmp
orcl是根据数据库连接字符串而定
1.查询出所有表的唯一键约束的 禁用sql
select 'alert table ' || table_name || ' disable constraint '||constraint_name||';'
from user_constraints where constraint_type='U';
如下:
alert table SYENTINFO2 disable constraint UQ_SY20180806;
alert table WEB_INFO disable constraint UQWEBINFO201807211136;
alert table ENT_INF ...
转:https://www.cnblogs.com/xdp-gacl/p/4002804.html
讲的很好,大家可以看看
package com.teamdev.jxbrowser.chromium.demo.提取域名;
import java.net.MalformedURLException;
@SuppressWarnings("unused")
public class GetWebUrl {
public static String getUrl(String url) throws Exception{
java.net.URL urls = new java.net.URL(url);
String host = urls.getHost();// 获取主机 ...
Microsoft Windows [版本 6.1.7601]
版权所有 (c) 2009 Microsoft Corporation。保留所有权利。
C:\Users\Administrator>taskkill /F /IM jxbrowser-chromium.exe
成功: 已终止进程 "jxbrowser-chromium.exe",其 PID 为 2240。
成功: 已终止进程 "jxbrowser-chromium.exe",其 PID 为 452。
成功: 已终止进程 "jxbrowser-chromium.exe&quo ...
public static void main(String[] args) {
String keyword = "鼠标";
keyword=UrlEncoded.encodeString(keyword);
System.out.println(keyword);
System.out.println(System.currentTimeMillis());
String urlStr = "https://www.amazon.cn/s/ref=sr_pg_1?rh=i%3Aaps%2Ck%3A%E9%BC ...