随笔 - 388
文章 - 1
评论 - 31
阅读 -
94万
09 2018 档案
爬虫解决网页重定向问题
摘要:https://blog.csdn.net/ingiaohi/article/details/72672169 1.服务器端重定向,在服务器端完成,一般来说爬虫可以自适应,是不需要特别处理的,如响应代码301(永久重定向)、302(暂时重定向)等。具体来说,可以通过requests请求得到的resp
阅读全文
windows常用命令
摘要:要结束进程的话,taskkill命令提供两种方式来实现。 我们可以通过pid或者im name来结束。 taskkill /im mspaint.exe /f F参数表示强制执行。 taskkill /im mspaint.exe /f
阅读全文
解决因为本地代码和远程代码冲突,导致git pull无法拉取远程代码的问题
摘要:https://www.cnblogs.com/huanyou/p/6654813.html 一、问题 当本地代码和远程代码有冲突的时候,执行git pull操作的时候,会提示有冲突,然后直接终止本次pull,查了些资料没有找到强制pull的方式,但是可以使用如下方式解决。 二、解决思路 可以先将本
阅读全文
How to import a GitHub project into Eclipse
摘要:Assuming you have created a project in GitHub, these are the steps to import it into Eclipse. First, you have to add the git repository to Eclipse. To
阅读全文