2021年1月25日

python运行快捷键

摘要: 阅读全文

posted @ 2021-01-25 17:22 ybl20000418 阅读(46) 评论(0) 推荐(0) 编辑

2021年1月24日

Latex中文识别texlive中文

摘要: 1 添加命令\usepackage[UTF8]{ctex} 2 3 \documentclass{article} 4 \usepackage[UTF8]{ctex} 5 \title{My first document} 6 \author{大家好} 7 \date{\today} 8 \begi 阅读全文

posted @ 2021-01-24 10:35 ybl20000418 阅读(337) 评论(0) 推荐(0) 编辑

2020年9月2日

C++、堆栈

摘要: 栈:由系统自动分配。 例如,声明在函数中一个局部变量 int b; 系统自动在栈中为b开辟空间堆:需要程序员自己申请,并指明大小,在c中malloc函数如p1 = (char *)malloc(10);在C++中用new运算符如p2 = (char *)malloc(10);但是注意p1、p2本身是 阅读全文

posted @ 2020-09-02 15:13 ybl20000418 阅读(84) 评论(0) 推荐(0) 编辑

2019年12月20日

项目大作业图书管理系统

摘要: https://github.com/ybl20000418/SDNU 阅读全文

posted @ 2019-12-20 12:52 ybl20000418 阅读(169) 评论(0) 推荐(0) 编辑

2019年11月13日

DIV页面分部

摘要: JSP <%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title 阅读全文

posted @ 2019-11-13 23:41 ybl20000418 阅读(79) 评论(0) 推荐(0) 编辑

2019年11月12日

Eclipse建立Java Web项目

摘要: 下载好Tomcat,Eclipse,Tomcat下载最新版本就行,向下兼容的,下载压缩文件解压即可使用。 新建项目Dynamic Web Project,一路默认即可 建立JSP文件一路默认即可 配置默认Web服务器,右击项目栏空白处新建Server,在对话框中选择第一步下载的Tomcat版本,点击 阅读全文

posted @ 2019-11-12 15:45 ybl20000418 阅读(53) 评论(0) 推荐(0) 编辑

Java Web开发时JSP乱码问题

摘要: 在调整为文件属性为UTF-8之后,还是出现乱码问题 在建立JSP文件时原始框架下更改相关的操作。 阅读全文

posted @ 2019-11-12 15:32 ybl20000418 阅读(78) 评论(0) 推荐(0) 编辑

2019年10月20日

python sdnu校园网模拟登陆

摘要: # _*_ coding::utf_8 _*_ import urllib.request import urllib.parse post_url='http://192.168.255.195:8080/Control' form_data={ 'id': '2000', 'strAccount': '18765888179', 'strPassword': '123123', 's... 阅读全文

posted @ 2019-10-20 20:06 ybl20000418 阅读(351) 评论(0) 推荐(0) 编辑

2019年10月7日

pip 安装命令

摘要: 在使用pip安装时如果不对pip进行设置,pip链接网站可能会到国外网址,因为墙的存在pip出现连接超时 我们用这个命令就可以解决 pip install numpy -i http://pypi.douban.com/simple --trusted-host pypi.douban.com 此外还有其他原地址 通过几次pip的使用,对于默认的pip源的速度实在无法忍受... 阅读全文

posted @ 2019-10-07 20:00 ybl20000418 阅读(327) 评论(0) 推荐(0) 编辑

2019年9月29日

百度贴吧爬虫小程序源码

摘要: # _*_ coding::utf_8 _*_ import urllib.request import urllib.parse import os url='http://tieba.baidu.com/f?' start=int(input("请输入开始页码:")) end=int(input("请输入结束页码:")) name=input("请输入搜索贴吧的名字:") name1=url... 阅读全文

posted @ 2019-09-29 19:27 ybl20000418 阅读(159) 评论(0) 推荐(0) 编辑

导航