
C
风情客家__
简述需要300字以内_(¦3」∠)_
展开
-
C语言调用Python实现http接口调用,上传图片
get_car_num.py#!/usr/bin/python# -*- coding: UTF-8 -*-import requestsimport urllib3urllib3.disable_warnings()def updateImage(self, filepath): #upload_url = "http://192.168.1.16:8999/upload/ueditor?action=uploadimage&encode=utf-8" upload_u原创 2021-07-30 09:38:38 · 469 阅读 · 1 评论 -
C调用Python报错:fatal error: Python.h: No such file or directory
参考文章:Linux GCC常用命令我的Ubuntu系统上有Python,但是gcc找不到Python.h问题: C调用Python时报错:fatal error: Python.h: No such file or directory#include <Python.h>分析:网上各种解决方案,常见的有:第一种:sudo apt-get install python-dev # for python2.x installssudo...原创 2021-07-16 11:30:18 · 9824 阅读 · 1 评论 -
Python与C/C++相互调用
参考文章:Python实例浅谈之三Python与C/C++相互调用转载 2021-07-15 19:59:45 · 232 阅读 · 0 评论 -
C语言实现http post请求和get请求,post请求上传图片和文件
参考文章:C语言实现http post请求和get请求,post请求可以上传图片和文件转载 2021-07-15 11:15:53 · 1410 阅读 · 0 评论 -
C语言实现http post上传文件
参考文章:基于C语言实现HTTP POST 表单形式上传文件转载 2021-07-15 09:54:16 · 1761 阅读 · 0 评论 -
Windows CLion 远程Linux服务器 开发调试
参考文章:Windows CLion 远程Linux服务器 开发调试win10远程Linux服务器开发调试clion原创 2021-07-15 08:44:52 · 198 阅读 · 0 评论 -
linux C 实现HTTP get 及post 请求
参考文章:linux C 实现HTTP get 及post 请求1.main.c文件#include <stdio.h>#include "http_tool.h"int main() { printf("Hello, World!\n"); char *url2 = "http://localhost:12600/getUserList"; char *url = http_get(url2); printf("%s", url); r转载 2021-07-14 10:12:57 · 1028 阅读 · 0 评论