会员可以在此提问,百战程序员老师有问必答
对大家有帮助的问答会被标记为“推荐”
看完课程过来浏览一下别人提的问题,会帮你学得更全面
截止目前,同学们一共提了 133544个问题
Python 全系列/第一阶段:Python入门/函数和内存分析 37427楼
Python 全系列/第七阶段:网页编程基础/html5 37431楼

package java03192;

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.sql.Statement;

public class JdbcTest {

	/**
	 * @param 张楠楠2019年5月30日14:35
问题:
1、使用jdk中的反射机制,啥是反射机制自己都忘了。
2、Fri May 31 09:16:56 CST 2019 WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification.1
3、快捷按键
	 */
	//向Department表中添加一条数据;
	public void insertDepartment( String department_name,int location_id){
		Connection conn=null;
		Statement state=null;
		//驱动注册-》数据库驱动实例化,使用jdk中的反射机制;
		try {
			//驱动注册
			Class.forName("com.mysql.jdbc.Driver");
			//获取连接
			conn=DriverManager.getConnection("jdbc:mysql://localhost:3306/bjsxt?useUnicode=true&characterEncoding=utf-8", "root", "root");//返回connction对象
			String sql="insert into departments values(default,'"+department_name+"',"+location_id+")";
			//创建能够发送数据的对象
			state=conn.createStatement();
			int flag=state.executeUpdate(sql);
			System.out.println(flag);
		} catch (Exception e) {
			// TODO Auto-generated catch block
			e.printStackTrace();//数据库中的驱动在数据库中的驱动包中=com.mysql.jdbc.Driver.class,driver.class,有一个非运行异常
		}finally{
			//释放资源
			if(state !=null){
				try {
					state.close();
				} catch (SQLException e) {
					// TODO Auto-generated catch block
					e.printStackTrace();
				}
			}
			if(conn!=null){
				try {
					conn.close();
				} catch (SQLException e) {
					// TODO Auto-generated catch block
					e.printStackTrace();
				}
			}
		}
		
	}
//更新departments表中的department_id 为6的数据,将部门名称改为数学部,location_id修改为6
	public void updateDepartment(String department_name,int department_id,int location_id){
		Connection conn=null;
		Statement state=null;
		try{
			Class.forName("com.mysql.jdbc.Driver");
			conn=DriverManager.getConnection("jdbc:mysql://localhost:3306/bjsxt?useUnicode=true&characterEncoding=utf-8", "root", "root");
			String sql="UPDATE departments d SET d.department_name='"+department_name+"',d.location_id="+location_id+" WHERE department_id="+department_id+"";
			//String sql="insert into departments values("+department_id+",'"+department_name+"',"+location_id+")";
			int flag=state.executeUpdate(sql);
			System.out.println(flag);
		}catch(Exception e){
			e.printStackTrace();
		}finally{
			//释放资源
			if(state !=null){
				try {
					state.close();
				} catch (SQLException e) {
					// TODO Auto-generated catch block
					e.printStackTrace();
				}
			}
			if(conn!=null){
				try {
					conn.close();
				} catch (SQLException e) {
					// TODO Auto-generated catch block
					e.printStackTrace();
				}
			}
		}
	}
	public static void main(String[] args) {
		JdbcTest test=new JdbcTest();
		//test.insertDepartment("研发部3", 10);
		test.updateDepartment("数学部",3 , 10);

	}

}
Fri May 31 10:36:35 CST 2019 WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification.
java.lang.NullPointerException
	at java03192.JdbcTest.updateDepartment(JdbcTest.java:65)
	at java03192.JdbcTest.main(JdbcTest.java:92)

老师提示报错,查了找不到原因,请帮忙看看。

JAVA 全系列/第四阶段:数据库与AI协同技术实战/JDBC技术(旧) 37432楼
JAVA 全系列/第四阶段:数据库与AI协同技术实战/Oracle 数据库的使用 37433楼
JAVA 全系列/(旧的隐藏)第七阶段:JAVA 高级技术/Dubbo 37434楼
Python 全系列/第九阶段:Python_Django2 框架(隐藏)/Django项目阶段-博客项目 37435楼
JAVA 全系列/第四阶段:数据库与AI协同技术实战/Oracle 数据库的使用 37437楼
JAVA 全系列/第四阶段:数据库与AI协同技术实战/Oracle 数据库的使用 37438楼
JAVA 全系列/(旧的隐藏)第八阶段:电商高级项目_架构/编码/电商ego-使用VSFTPD_Nginx完成商品新增 37439楼

您好,老师:

      我是之前在微信群里向您请教问题的学员,一下是我的代码和问题:

server:

#coding=utf-8
from flask import Flask
import ConfigParser
import json
from flask import request
import arcpy

app = Flask(__name__)

@app.route('/')
def hello_world():
    return 'Hello World!'

@app.route("/json_Analysis",methods = ['GET', 'POST'])
def json_Analysis():
    if request.method == 'POST':
        data = request.get_data()
        json_data = json.loads(data.decode("utf-8"))
        return json.dumps(json_data)

@app.route("/exist_Analysis",methods = ['GET', 'POST'])
def exist_Analysis():
    if request.method == 'POST':
        data = request.get_data()
        json_data = json.loads(data.decode("utf-8"))
        arcpy.env.workspace = r'C:\Users\Administrator\AppData\Roaming\ESRI\Desktop10.6\ArcCatalog\Connection to PDBORCL.sde'
        fcs = arcpy.ListFeatureClasses()
        s = len(fcs)
        for fc in fcs:
            if fc.title().upper() == 'SDE.TEST1':
               val =2
        return json.dumps(json_data)

client:

#coding=utf-8
import requests

headers = {"Content-Type": "application/json; charset=UTF-8"}
url_Json = 'http://127.0.0.1:5000/json_Analysis'
url_Exist = 'http://127.0.0.1:5000/exist_Analysis'

entities = [{"name1": "bad", "filters": {"key1": "value1","key2": "value2"}},
            {"name2": "bad", "filters": {"key1": "value1","key2": "value2"}},
            {"name3": "bad", "filters": {"key1": "value1","key2": "value2"}},
            {"name4": "bad", "filters": {"key1": "value1","key2": "value2"}},]


def json_Analysis():
    json_Info = requests.post(url_Json,json = entities,headers = headers)
    print json_Info.status_code
    print json_Info.url
    print json_Info.text

def exist_Analysis():
    exist_Info = requests.post(url_Exist,json = entities,headers = headers)
    print exist_Info.status_code
    print exist_Info.url
    print exist_Info.text

exist_Analysis()
json_data = json_Analysis()

目录:

image.png

错误信息:

500

http://127.0.0.1:5000/exist_Analysis

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">

<title>500 Internal Server Error</title>

<h1>Internal Server Error</h1>

<p>The server encountered an internal error and was unable to complete your request. Either the server is overloaded or there is an error in the application.</p>

个人思考:

arcpy是用来处理空间数据的,由ESRI公司发布。

fcs = arcpy.ListFeatureClasses()返回的是目标库里的空间数据集,这一步还没报错,但当进一步检索fcs的length以及fcs里某个目标要素时就会出问题。
arcpy不是通过pip导入的,是第三方库,我在想引用这样的库是否需要特别处理还是不能这么操作?还得麻烦老师帮忙解答下,先谢过了

Python 全系列/第一阶段:Python入门/Python入门(动画版) 37440楼

课程分类

百战程序员微信公众号

百战程序员微信小程序

©2014-2025百战汇智(北京)科技有限公司 All Rights Reserved 北京亦庄经济开发区科创十四街 赛蒂国际工业园
网站维护:百战汇智(北京)科技有限公司
京公网安备 11011402011233号    京ICP备18060230号-3    营业执照    经营许可证:京B2-20212637