怎么用python开始_Python入门学习怎么开始?

刚开始没必要看书

也没必要听那些所谓的老手的建议

什么学习路线的,那些都是扯淡的

没什么卵用的

为什么呢?

因为想要提高你的水平,最重要的就是动手,实战

你照着那些路线慢慢的学下去,学不了几天,你的耐心就都被磨没了

耐心都磨没了,还学个屁

所以我的建议是,基本语法熟悉之后,直接去实战

过程中遇到不懂的地方再去找答案,这样你容易有成就感,也学的快

需要的话,我这里有很多实战的项目资料,有需要的可以找我来拿

参考下图找我

import java.util.regex.Matcher;

import java.util.regex.Pattern;

public class DownloadImg {

public static void writeImgEntityToFile(HttpEntity imgEntity,String fileAddress) {

File storeFile = new File(fileAddress);

FileOutputStream output = null;

try {

output = new FileOutputStream(storeFile);

if (imgEntity != null) {

InputStream instream;

instream = imgEntity.getContent();

byte b[] = new byte[8 * 1024];

int count;

while ((count = instream.read(b)) != -1) {

output.write(b, 0, count);

}

}

} catch (FileNotFoundException e) {

e.printStackTrace();

} catch (IOException e) {

e.printStackTrace();

} finally {

try {

output.close();

} catch (IOException e) {

e.printStackTrace();

}

}

}

public static void main(String[] args) {

System.out.println("获取Bing图片地址中……");

SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");

CloseableHttpClient httpClient = HttpClients.createDefault();

HttpGet httpGet = new HttpGet("http://cn.bing.com/");

CloseableHttpResponse response = null;

try {

response = httpClient.execute(httpGet);

Pattern p = Pattern.compile("g_img=\\{url:.*\\.jpg");

Matcher m = p.matcher(EntityUtils.toString(response.getEntity()));

String address = null;

if (m.find()) {

address = m.group().split("'")[1].split("'")[0];

} else {

System.exit(0);

}

System.out.println("图片地址:" + address);

System.out.println("正在下载……");

HttpGet getImage = new HttpGet(address);

CloseableHttpResponse responseImg = httpClient.execute(getImage);

HttpEntity entity = responseImg.getEntity();

writeImgEntityToFile(entity,"/home/geekgao/图片/BingImg/" + dateFormat.format(new Date()) + ".jpg");

System.out.println("下载完毕.");

} catch (IOException e) {

e.printStackTrace();

} finally {

try {

httpClient.close();

response.close();

} catch (IOException e) {

e.printStackTrace();

}

}

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值