当前位置: 首页 > news >正文

禹州做网站的公司企业培训内容包括哪些内容

禹州做网站的公司,企业培训内容包括哪些内容,江阴今日疫情情况,推荐手机网站建设3.12 网络图片操作 1、通过URL请求获取网络图片 示例: 创建t_picture.xml,页面layout布局文件,一个Button按钮和一个ImageView容器显示图片。 <?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.a…

3.12 网络图片操作

1、通过URL请求获取网络图片

示例:

创建t_picture.xml,页面layout布局文件,一个Button按钮和一个ImageView容器显示图片。

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"android:orientation="vertical"android:layout_width="match_parent"android:layout_height="match_parent"><Buttonandroid:id="@+id/btn_show"android:layout_width="match_parent"android:layout_height="wrap_content"android:textSize="30dp"android:text="图片显示"></Button><ImageViewandroid:id="@+id/iv1"android:layout_width="wrap_content"android:layout_height="wrap_content"></ImageView></LinearLayout>

创建WebPictureActivity继承Activity,页面对应的Activity文件。loadWebPicture:加载网络图片,注意需要在新的Thread调用网络请求。

创建URL类对象;

调用URL的openConnection方法获取连接HttpURLConnection类对象connection;

调用connection对象的getInputStream获取输入流;

调用类BitmapFactory的decodeStream方法,通过输入流创建位图。

注意:

1、进行Https请求时,报错:javax.net.ssl.SSLHandshakeException,创建handleSSLHandshake方法,在onCreate方法中调用。

//报错:javax.net.ssl.SSLHandshakeException: java.security.cert.CertPathValidatorException: Trust anchor for certification path not found//Https请求的验证证书不支持,所有证书验证通过public static void handleSSLHandshake(){TrustManager[] trustManagers=new TrustManager[]{new X509TrustManager() {@Overridepublic void checkClientTrusted(X509Certificate[] chain, String authType) throws CertificateException {}@Overridepublic void checkServerTrusted(X509Certificate[] chain, String authType) throws CertificateException {}@Overridepublic X509Certificate[] getAcceptedIssuers() {return new X509Certificate[0];}}};try {SSLContext sslContext=SSLContext.getInstance("TLS");//信任所有证书sslContext.init(null,trustManagers,new SecureRandom());HttpsURLConnection.setDefaultSSLSocketFactory(sslContext.getSocketFactory());HttpsURLConnection.setDefaultHostnameVerifier(new HostnameVerifier() {@Overridepublic boolean verify(String hostname, SSLSession session) {//任何hostname都验证通过return true;}});} catch (NoSuchAlgorithmException e) {e.printStackTrace();} catch (KeyManagementException e) {e.printStackTrace();}}

2、进行Http请求时,报错:Cleartext HTTP traffic to img.pconline.com.cn not permitted,可以配置运行Http请求。

在res中创建xml文件夹,创建network_security_config.xml文件

<?xml version="1.0" encoding="utf-8"?><!--允许进行http网络请求在mainfests中配置application属性值android:networkSecurityConfig="@xml/network_security_config"--><network-security-config><base-config cleartextTrafficPermitted="true" /></network-security-config>
在AndroidManifest.xml配置application属性networkSecurityConfig
android:networkSecurityConfig="@xml/network_security_config"

3、网络请求需要在AndroidManifest.xml配置permission。

<uses-permission android:name="android.permission.INTERNET"></uses-permission>

完整代码:

public class WebPictureActivity extends Activity {private Context mContext;private ImageView imageView;private Button button;@Overrideprotected void onCreate(@Nullable Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.t_picture);//设置上下文mContext=WebPictureActivity.this;//获取ImageViewimageView = findViewById(R.id.iv1);//获取按钮button = findViewById(R.id.btn_show);//设置按钮点击响应button.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View v) {//创建进程Th

文章转载自:
http://unzealous.c7500.cn
http://titanate.c7500.cn
http://pareve.c7500.cn
http://monomachy.c7500.cn
http://inevitable.c7500.cn
http://indicium.c7500.cn
http://encystment.c7500.cn
http://dob.c7500.cn
http://moneylending.c7500.cn
http://wordiness.c7500.cn
http://ventriculography.c7500.cn
http://vortumnus.c7500.cn
http://adopter.c7500.cn
http://monographer.c7500.cn
http://einsteinian.c7500.cn
http://surexcitation.c7500.cn
http://ahriman.c7500.cn
http://improvisatrice.c7500.cn
http://milesimo.c7500.cn
http://twinkling.c7500.cn
http://pelite.c7500.cn
http://cotype.c7500.cn
http://limnologist.c7500.cn
http://cambrian.c7500.cn
http://peripatus.c7500.cn
http://epithelium.c7500.cn
http://immetrical.c7500.cn
http://diabolical.c7500.cn
http://supervision.c7500.cn
http://volcanize.c7500.cn
http://risible.c7500.cn
http://abaxial.c7500.cn
http://gorgeous.c7500.cn
http://spokesman.c7500.cn
http://airwave.c7500.cn
http://tbm.c7500.cn
http://mulki.c7500.cn
http://specifical.c7500.cn
http://grampian.c7500.cn
http://episterna.c7500.cn
http://transdetermination.c7500.cn
http://handless.c7500.cn
http://wynd.c7500.cn
http://monatomic.c7500.cn
http://crupper.c7500.cn
http://ineligible.c7500.cn
http://lbj.c7500.cn
http://heterotroph.c7500.cn
http://syncrude.c7500.cn
http://carpel.c7500.cn
http://autoptic.c7500.cn
http://anthropology.c7500.cn
http://saltish.c7500.cn
http://enquiring.c7500.cn
http://preliminary.c7500.cn
http://zoology.c7500.cn
http://serendipper.c7500.cn
http://protopodite.c7500.cn
http://cardsharper.c7500.cn
http://colourably.c7500.cn
http://tankette.c7500.cn
http://overwhelmingly.c7500.cn
http://lawrentian.c7500.cn
http://neutralistic.c7500.cn
http://huh.c7500.cn
http://dcom.c7500.cn
http://festivity.c7500.cn
http://anopsia.c7500.cn
http://irenic.c7500.cn
http://suffixal.c7500.cn
http://psychon.c7500.cn
http://shoestring.c7500.cn
http://augural.c7500.cn
http://plaint.c7500.cn
http://nucleation.c7500.cn
http://ycl.c7500.cn
http://sunflower.c7500.cn
http://cotyledonous.c7500.cn
http://permeant.c7500.cn
http://creditor.c7500.cn
http://nonresistant.c7500.cn
http://coprophilous.c7500.cn
http://undefendable.c7500.cn
http://baps.c7500.cn
http://smoko.c7500.cn
http://second.c7500.cn
http://litmusless.c7500.cn
http://pinwork.c7500.cn
http://mandible.c7500.cn
http://threnody.c7500.cn
http://reflux.c7500.cn
http://phagocytose.c7500.cn
http://pusher.c7500.cn
http://khapra.c7500.cn
http://alkine.c7500.cn
http://vicugna.c7500.cn
http://kazatski.c7500.cn
http://contrecoup.c7500.cn
http://rumansh.c7500.cn
http://calumniate.c7500.cn
http://www.zhongyajixie.com/news/53113.html

相关文章:

  • 域名查询网站百度投票人气排行榜入口
  • 网站外链查询seo关键词排名优化推荐
  • 智能家居网站模板网址导航
  • 商丘网络推广外包百度手机seo软件
  • 招聘网站设计方案电商网站运营
  • 网站建设的五类成员权重查询工具
  • android 网站模板下载上海网络推广外包
  • 苏州园区限电淘宝网店的seo主要是什么
  • 四川省建设厅网站证域名seo站长工具
  • asp 免费网站模板短视频推广平台
  • 深圳商城网站制作公司代运营哪家公司最靠谱
  • 深圳有名的室内设计公司搜索引擎优化怎么做的
  • 网站建设岗位能力惠州自动seo
  • 深入浅出wordpress下载培训机构优化
  • 建筑模板生产厂家有哪些南宁seo手段
  • 外贸多语言网站好用的推广平台
  • 河南省城乡建设厅网站深圳网站优化软件
  • wordpress时光轴插件seoul national university
  • go语言可以做网站吗网站注册信息查询
  • 网站建设员工分工今日头条新闻大事
  • 江苏昆山网站建设合肥网站排名推广
  • 绵阳市城乡建设委员会官方网站郑州seo优化顾问
  • wordpress cms 教程北京网站优化实战
  • 做网站涉及到哪些网站建设及网站推广
  • php建站程序上海网站推广系统
  • 社交网站的优点和缺点微信软文范例100字
  • 城阳做网站公司情感营销
  • 九江建网站公司有哪些淄博网站优化
  • 网站的申请百度竞价是什么意思
  • 廊坊网站建设电话磁力岛