由于调用系统默认浏览器下载更新,造成用户体验非常不好,所以决定在webview中直接下载系统更新。然后直接安装。

由于要下载,所以必须用webview,联网权限这里不说了,直接写在manifafest中。

我们经常使用的下载都是调用Android默认浏览器 这样写

1、设置WebView的DownloadListener:

webView.setDownloadListener(new MyWebViewDownLoadListener());

2、实现MyWebViewDownLoadListener这个类,详细能够例如以下这样:

[java] view
plain
copy

  1. private class MyWebViewDownLoadListener implements DownloadListener {
  2. @Override
  3. public void onDownloadStart(String url, String userAgent, String contentDisposition, String mimetype,
  4. long contentLength) {
  5. Uri uri = Uri.parse(url);
  6. Intent intent = new Intent(Intent.ACTION_VIEW, uri);
  7. startActivity(intent);
  8. }
  9. }

为了直接下载,

Sample:

java代码:

public class zwebxiazai extends Activity {

   

 WebView webView;

   

    @Override

    public void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);

        setContentView(R.layout.main);

        this.webView=(WebView) this.findViewById(R.id.webview);

        this.webView.getSettings().setSupportZoom(false);

        this.webView.getSettings().setJavaScriptCanOpenWindowsAutomatically(true);

        this.webView.loadUrl("http://a.zntx.cc/");

        this.webView.setWebViewClient(new WebViewClientDemo());

        webView.setDownloadListener(new DownloadListener() {

            public void onDownloadStart(String url, String userAgent,

                            String contentDisposition, String mimetype,

                            long contentLength) {

                    //实现下载的代码

                                          Uri uri =
Uri.parse(url);

           Intent intent = new Intent(Intent.ACTION_VIEW,uri);

                    startActivity(intent);

            }

    });

}

  private class WebViewClientDemo extends WebViewClient {

    @Override

    // 在WebView中而不是默认浏览器中显示页面

    public boolean shouldOverrideUrlLoading(WebView view, String url) {

     view.loadUrl(url);

      return true;

     }

}

  }

main.xml代码:

<?

xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

    android:orientation="vertical"

    android:layout_width="fill_parent"

    android:layout_height="fill_parent"

    >

<TextView

    android:layout_width="fill_parent"

    android:layout_height="wrap_content"

    android:text="@string/hello"

    />

<WebView android:id="@+id/webview" android:layout_width="fill_parent"

    android:layout_height="0dip" android:layout_weight="1" />

</LinearLayout>

在AndroidManifest.xml中增加訪问internet的权限:

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

Sample2   这个比較具体

WebView控制调用对应的WEB页面进行展示。当碰到页面有下载链接的时候,点击上去是一点反应都没有的。

原来是由于WebView默认没有开启文件下载的功能。假设要实现文件下载的功能。须要设置WebView的DownloadListener,通过实现自己的DownloadListener来实现文件的下载。详细操作例如以下: 



1、设置WebView的DownloadListener: 

    webView.setDownloadListener(new MyWebViewDownLoadListener()); 



2、实现MyWebViewDownLoadListener这个类,详细能够例如以下这样:

Java代码  
  1. private class MyWebViewDownLoadListener implements DownloadListener{
  2. @Override
  3. public void onDownloadStart(String url, String userAgent, String contentDisposition, String mimetype,
  4. long contentLength) {
  5. Log.i("tag", "url="+url);
  6. Log.i("tag", "userAgent="+userAgent);
  7. Log.i("tag", "contentDisposition="+contentDisposition);
  8. Log.i("tag", "mimetype="+mimetype);
  9. Log.i("tag", "contentLength="+contentLength);
  10. Uri uri = Uri.parse(url);
  11. Intent intent = new Intent(Intent.ACTION_VIEW, uri);
  12. startActivity(intent);
  13. }
  14. }
[java] view
plain
copy

  1. private class MyWebViewDownLoadListener implements DownloadListener{
  2. @Override
  3. public void onDownloadStart(String url, String userAgent, String contentDisposition, String mimetype,
  4. long contentLength) {
  5. Log.i("tag", "url="+url);
  6. Log.i("tag", "userAgent="+userAgent);
  7. Log.i("tag", "contentDisposition="+contentDisposition);
  8. Log.i("tag", "mimetype="+mimetype);
  9. Log.i("tag", "contentLength="+contentLength);
  10. Uri uri = Uri.parse(url);
  11. Intent intent = new Intent(Intent.ACTION_VIEW, uri);
  12. startActivity(intent);
  13. }
  14. }

这仅仅是调用系统中已经内置的浏览器进行下载,还没有WebView本身进行的文件下载。只是,这也基本上满足我们的应用场景了。 



我在项目中的运用 

项目要求这样: 

1,须要使用WebView载入一个网页。 

2。网页中有文件下载的链接,点击后须要下载文件到SDcard; 

3。然后自己主动打开文件; 

以下是详细解决的方法 

第一步。对WebView进行一系列设置。

Java代码  
  1. WebView webview=(WebView)layout.findViewById(R.id.webview);
  2. webview.getSettings().setJavaScriptEnabled(true);
  3. webview.setWebChromeClient(new MyWebChromeClient());
  4. webview.requestFocus();
  5. //              webview.loadUrl("file:///android_asset/risktest.html");
  6. webview.loadUrl(jcrs_sub.get(position).addr);
  7. // 设置web视图client
  8. webview.setWebViewClient(new MyWebViewClient());
  9. webview.setDownloadListener(new MyWebViewDownLoadListener());
  10. //内部类
  11. public class MyWebViewClient extends WebViewClient {
  12. // 假设页面中链接,假设希望点击链接继续在当前browser中响应,
  13. // 而不是新开Android的系统browser中响应该链接,必须覆盖 webview的WebViewClient对象。
  14. public boolean shouldOverviewUrlLoading(WebView view, String url) {
  15. L.i("shouldOverviewUrlLoading");
  16. view.loadUrl(url);
  17. return true;
  18. }
  19. public void onPageStarted(WebView view, String url, Bitmap favicon) {
  20. L.i("onPageStarted");
  21. showProgress();
  22. }
  23. public void onPageFinished(WebView view, String url) {
  24. L.i("onPageFinished");
  25. closeProgress();
  26. }
  27. public void onReceivedError(WebView view, int errorCode,
  28. String description, String failingUrl) {
  29. L.i("onReceivedError");
  30. closeProgress();
  31. }
  32. }
  33. // 假设不做不论什么处理,浏览网页,点击系统“Back”键,整个Browser会调用finish()而结束自身。
  34. // 假设希望浏览的网 页回退而不是推出浏览器,须要在当前Activity中处理并消费掉该Back事件。
  35. public boolean onKeyDown(int keyCode, KeyEvent event) {
  36. // if((keyCode==KeyEvent.KEYCODE_BACK)&&webview.canGoBack()){
  37. // webview.goBack();
  38. // return true;
  39. // }
  40. return false;
  41. }
[java] view
plain
copy

  1. WebView webview=(WebView)layout.findViewById(R.id.webview);
  2. webview.getSettings().setJavaScriptEnabled(true);
  3. webview.setWebChromeClient(new MyWebChromeClient());
  4. webview.requestFocus();
  5. //              webview.loadUrl("file:///android_asset/risktest.html");
  6. webview.loadUrl(jcrs_sub.get(position).addr);
  7. // 设置web视图client
  8. webview.setWebViewClient(new MyWebViewClient());
  9. webview.setDownloadListener(new MyWebViewDownLoadListener());
  10. //内部类
  11. public class MyWebViewClient extends WebViewClient {
  12. // 假设页面中链接,假设希望点击链接继续在当前browser中响应。
  13. // 而不是新开Android的系统browser中响应该链接。必须覆盖 webview的WebViewClient对象。
  14. public boolean shouldOverviewUrlLoading(WebView view, String url) {
  15. L.i("shouldOverviewUrlLoading");
  16. view.loadUrl(url);
  17. return true;
  18. }
  19. public void onPageStarted(WebView view, String url, Bitmap favicon) {
  20. L.i("onPageStarted");
  21. showProgress();
  22. }
  23. public void onPageFinished(WebView view, String url) {
  24. L.i("onPageFinished");
  25. closeProgress();
  26. }
  27. public void onReceivedError(WebView view, int errorCode,
  28. String description, String failingUrl) {
  29. L.i("onReceivedError");
  30. closeProgress();
  31. }
  32. }
  33. // 假设不做不论什么处理,浏览网页,点击系统“Back”键,整个Browser会调用finish()而结束自身。
  34. // 假设希望浏览的网 页回退而不是推出浏览器,须要在当前Activity中处理并消费掉该Back事件。
  35. public boolean onKeyDown(int keyCode, KeyEvent event) {
  36. // if((keyCode==KeyEvent.KEYCODE_BACK)&&webview.canGoBack()){
  37. // webview.goBack();
  38. // return true;
  39. // }
  40. return false;
  41. }

第二步。起线程開始下载文件。

Java代码  
  1. //内部类
  2. private class MyWebViewDownLoadListener implements DownloadListener {
  3. @Override
  4. public void onDownloadStart(String url, String userAgent, String contentDisposition, String mimetype,
  5. long contentLength) {
  6. if(!Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)){
  7. Toast t=Toast.makeText(mContext, "须要SD卡。", Toast.LENGTH_LONG);
  8. t.setGravity(Gravity.CENTER, 0, 0);
  9. t.show();
  10. return;
  11. }
  12. DownloaderTask task=new DownloaderTask();
  13. task.execute(url);
  14. }
  15. }
  16. //内部类
  17. private class DownloaderTask extends AsyncTask<String, Void, String> {
  18. public DownloaderTask() {
  19. }
  20. @Override
  21. protected String doInBackground(String... params) {
  22. // TODO Auto-generated method stub
  23. String url=params[0];
  24. //          Log.i("tag", "url="+url);
  25. String fileName=url.substring(url.lastIndexOf("/")+1);
  26. fileName=URLDecoder.decode(fileName);
  27. Log.i("tag", "fileName="+fileName);
  28. File directory=Environment.getExternalStorageDirectory();
  29. File file=new File(directory,fileName);
  30. if(file.exists()){
  31. Log.i("tag", "The file has already exists.");
  32. return fileName;
  33. }
  34. try {
  35. HttpClient client = new DefaultHttpClient();
  36. //                client.getParams().setIntParameter("http.socket.timeout",3000);//设置超时
  37. HttpGet get = new HttpGet(url);
  38. HttpResponse response = client.execute(get);
  39. if(HttpStatus.SC_OK==response.getStatusLine().getStatusCode()){
  40. HttpEntity entity = response.getEntity();
  41. InputStream input = entity.getContent();
  42. writeToSDCard(fileName,input);
  43. input.close();
  44. //                  entity.consumeContent();
  45. return fileName;
  46. }else{
  47. return null;
  48. }
  49. catch (Exception e) {
  50. e.printStackTrace();
  51. return null;
  52. }
  53. }
  54. @Override
  55. protected void onCancelled() {
  56. // TODO Auto-generated method stub
  57. super.onCancelled();
  58. }
  59. @Override
  60. protected void onPostExecute(String result) {
  61. // TODO Auto-generated method stub
  62. super.onPostExecute(result);
  63. closeProgressDialog();
  64. if(result==null){
  65. Toast t=Toast.makeText(mContext, "连接错误!

    请稍后再试!

    ", Toast.LENGTH_LONG);

  66. t.setGravity(Gravity.CENTER, 0, 0);
  67. t.show();
  68. return;
  69. }
  70. Toast t=Toast.makeText(mContext, "已保存到SD卡。", Toast.LENGTH_LONG);
  71. t.setGravity(Gravity.CENTER, 0, 0);
  72. t.show();
  73. File directory=Environment.getExternalStorageDirectory();
  74. File file=new File(directory,result);
  75. Log.i("tag", "Path="+file.getAbsolutePath());
  76. Intent intent = getFileIntent(file);
  77. startActivity(intent);
  78. }
  79. @Override
  80. protected void onPreExecute() {
  81. // TODO Auto-generated method stub
  82. super.onPreExecute();
  83. showProgressDialog();
  84. }
  85. @Override
  86. protected void onProgressUpdate(Void... values) {
  87. // TODO Auto-generated method stub
  88. super.onProgressUpdate(values);
  89. }
  90. }
[java] view
plain
copy

  1. //内部类
  2. private class MyWebViewDownLoadListener implements DownloadListener {
  3. @Override
  4. public void onDownloadStart(String url, String userAgent, String contentDisposition, String mimetype,
  5. long contentLength) {
  6. if(!Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)){
  7. Toast t=Toast.makeText(mContext, "须要SD卡。", Toast.LENGTH_LONG);
  8. t.setGravity(Gravity.CENTER, 0, 0);
  9. t.show();
  10. return;
  11. }
  12. DownloaderTask task=new DownloaderTask();
  13. task.execute(url);
  14. }
  15. }
  16. //内部类
  17. private class DownloaderTask extends AsyncTask<String, Void, String> {
  18. public DownloaderTask() {
  19. }
  20. @Override
  21. protected String doInBackground(String... params) {
  22. // TODO Auto-generated method stub
  23. String url=params[0];
  24. //          Log.i("tag", "url="+url);
  25. String fileName=url.substring(url.lastIndexOf("/")+1);
  26. fileName=URLDecoder.decode(fileName);
  27. Log.i("tag", "fileName="+fileName);
  28. File directory=Environment.getExternalStorageDirectory();
  29. File file=new File(directory,fileName);
  30. if(file.exists()){
  31. Log.i("tag", "The file has already exists.");
  32. return fileName;
  33. }
  34. try {
  35. HttpClient client = new DefaultHttpClient();
  36. //                client.getParams().setIntParameter("http.socket.timeout",3000);//设置超时
  37. HttpGet get = new HttpGet(url);
  38. HttpResponse response = client.execute(get);
  39. if(HttpStatus.SC_OK==response.getStatusLine().getStatusCode()){
  40. HttpEntity entity = response.getEntity();
  41. InputStream input = entity.getContent();
  42. writeToSDCard(fileName,input);
  43. input.close();
  44. //                  entity.consumeContent();
  45. return fileName;
  46. }else{
  47. return null;
  48. }
  49. } catch (Exception e) {
  50. e.printStackTrace();
  51. return null;
  52. }
  53. }
  54. @Override
  55. protected void onCancelled() {
  56. // TODO Auto-generated method stub
  57. super.onCancelled();
  58. }
  59. @Override
  60. protected void onPostExecute(String result) {
  61. // TODO Auto-generated method stub
  62. super.onPostExecute(result);
  63. closeProgressDialog();
  64. if(result==null){
  65. Toast t=Toast.makeText(mContext, "连接错误。请稍后再试!", Toast.LENGTH_LONG);
  66. t.setGravity(Gravity.CENTER, 0, 0);
  67. t.show();
  68. return;
  69. }
  70. Toast t=Toast.makeText(mContext, "已保存到SD卡。

    ", Toast.LENGTH_LONG);

  71. t.setGravity(Gravity.CENTER, 0, 0);
  72. t.show();
  73. File directory=Environment.getExternalStorageDirectory();
  74. File file=new File(directory,result);
  75. Log.i("tag", "Path="+file.getAbsolutePath());
  76. Intent intent = getFileIntent(file);
  77. startActivity(intent);
  78. }
  79. @Override
  80. protected void onPreExecute() {
  81. // TODO Auto-generated method stub
  82. super.onPreExecute();
  83. showProgressDialog();
  84. }
  85. @Override
  86. protected void onProgressUpdate(Void... values) {
  87. // TODO Auto-generated method stub
  88. super.onProgressUpdate(values);
  89. }
  90. }

第三步,实现一些工具方法。

Java代码  
  1. private ProgressDialog mDialog;
  2. private void showProgressDialog(){
  3. if(mDialog==null){
  4. mDialog = new ProgressDialog(mContext);
  5. mDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);//设置风格为圆形进度条
  6. mDialog.setMessage("正在载入 ,请等待...");
  7. mDialog.setIndeterminate(false);//设置进度条是否为不明白
  8. mDialog.setCancelable(true);//设置进度条能否够按退回键取消
  9. mDialog.setCanceledOnTouchOutside(false);
  10. mDialog.setOnDismissListener(new OnDismissListener() {
  11. @Override
  12. public void onDismiss(DialogInterface dialog) {
  13. // TODO Auto-generated method stub
  14. mDialog=null;
  15. }
  16. });
  17. mDialog.show();
  18. }
  19. }
  20. private void closeProgressDialog(){
  21. if(mDialog!=null){
  22. mDialog.dismiss();
  23. mDialog=null;
  24. }
  25. }
  26. public Intent getFileIntent(File file){
  27. //       Uri uri = Uri.parse("http://m.ql18.com.cn/hpf10/1.pdf");
  28. Uri uri = Uri.fromFile(file);
  29. String type = getMIMEType(file);
  30. Log.i("tag", "type="+type);
  31. Intent intent = new Intent("android.intent.action.VIEW");
  32. intent.addCategory("android.intent.category.DEFAULT");
  33. intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
  34. intent.setDataAndType(uri, type);
  35. return intent;
  36. }
  37. public void writeToSDCard(String fileName,InputStream input){
  38. if(Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)){
  39. File directory=Environment.getExternalStorageDirectory();
  40. File file=new File(directory,fileName);
  41. //          if(file.exists()){
  42. //              Log.i("tag", "The file has already exists.");
  43. //              return;
  44. //          }
  45. try {
  46. FileOutputStream fos = new FileOutputStream(file);
  47. byte[] b = new byte[2048];
  48. int j = 0;
  49. while ((j = input.read(b)) != -1) {
  50. fos.write(b, 0, j);
  51. }
  52. fos.flush();
  53. fos.close();
  54. catch (FileNotFoundException e) {
  55. // TODO Auto-generated catch block
  56. e.printStackTrace();
  57. catch (IOException e) {
  58. // TODO Auto-generated catch block
  59. e.printStackTrace();
  60. }
  61. }else{
  62. Log.i("tag", "NO SDCard.");
  63. }
  64. }
  65. private String getMIMEType(File f){
  66. String type="";
  67. String fName=f.getName();
  68. /* 取得扩展名 */
  69. String end=fName.substring(fName.lastIndexOf(".")+1,fName.length()).toLowerCase();
  70. /* 依扩展名的类型决定MimeType */
  71. if(end.equals("pdf")){
  72. type = "application/pdf";//
  73. }
  74. else if(end.equals("m4a")||end.equals("mp3")||end.equals("mid")||
  75. end.equals("xmf")||end.equals("ogg")||end.equals("wav")){
  76. type = "audio/*";
  77. }
  78. else if(end.equals("3gp")||end.equals("mp4")){
  79. type = "video/*";
  80. }
  81. else if(end.equals("jpg")||end.equals("gif")||end.equals("png")||
  82. end.equals("jpeg")||end.equals("bmp")){
  83. type = "image/*";
  84. }
  85. else if(end.equals("apk")){
  86. /* android.permission.INSTALL_PACKAGES */
  87. type = "application/vnd.android.package-archive";
  88. }
  89. //      else if(end.equals("pptx")||end.equals("ppt")){
  90. //        type = "application/vnd.ms-powerpoint";
  91. //      }else if(end.equals("docx")||end.equals("doc")){
  92. //        type = "application/vnd.ms-word";
  93. //      }else if(end.equals("xlsx")||end.equals("xls")){
  94. //        type = "application/vnd.ms-excel";
  95. //      }
  96. else{
  97. //        /*假设无法直接打开,就跳出软件列表给用户选择 */
  98. type="*/*";
  99. }
  100. return type;
  101. }

安卓使用WebView下载文件,安卓实现软件升级功能的更多相关文章

  1. 转:Http下载文件类 支技断点续传功能

    using System; using System.Collections.Generic; using System.Text; using System.IO; using System.Net ...

  2. Linux wget 命令下载文件

    wget是Linux系统中用来下载文件的工具,其功能还是比较多的,能够下载单个文件,也可以分段下载,下面小编将针对wget命令的用法给大家做个实例介绍. 实例1 :下载单个文件 # wget http ...

  3. adb导出安卓 把手机内存文件导入到电脑里 adb安装软件

    记得先找对路劲adb shellls 最上面的ls: ./ 打头的没有权限.而下面的这些acct sdcard等 都有权限. 然后cd sdcardls 看下目录,发现gxm文件夹在sdcard下面. ...

  4. WebApp:如何让安卓的webview缓存webapp的html、js和图片等资源

    一.开发环境     客户端:安卓+webview(vuejs)     服务器端:tomcat 8.0 二.问题     使用安卓原生+web(基于webpack+vuejs)的方式开发了一个安卓应 ...

  5. 如何解决安卓SDK无法下载Package的问题

    转载自:http://jingyan.baidu.com/article/8275fc86dbe84046a03cf69d.html 有些用户在安装好Android SDK后,打开Android SD ...

  6. S如何解决安卓DK无法下载Package问题

    安装一些用户Android SDK后.打开Android SDK Manager下载API当总是显示"Done loading packages"却迟迟不能前进.自己也出现了这样的 ...

  7. 成都优步uber司机客户端下载-支持安卓、IOS系统、优步司机端Uberpartner

    国外打车软件优步乘客端大家在手机应用商店里都可以下载到,但是优步司机的App却不好找下载地址:这就跟滴滴打车一样,滴滴的乘客端是滴滴打车,而司机端是滴滴专车,司机版本在应用商店里都找不到,原因不清楚. ...

  8. 如何解决安卓SDK无法下载Package的问题 分类: H1_ANDROID 2013-09-09 10:26 1199人阅读 评论(0) 收藏

    转载自:http://jingyan.baidu.com/article/8275fc86dbe84046a03cf69d.html 有些用户在安装好Android SDK后,打开Android SD ...

  9. 【资源下载】安卓VS鸿蒙第三方件切换宝典 V1.0

    下载<安卓VS鸿蒙第三方件切换宝典> 由于字数较多,本文仅展示部分,查看完整版请点击上方下载 众所周知,安卓应用开发经过这么多年的发展相对成熟和稳定,鸿蒙OS作为后来者兼容一个成熟的开发体 ...

随机推荐

  1. yii2-Ueditor百度编辑器

    今天在网上看了下有关图片上传的教程,历经挫折才调试好,现在把相关代码及其说明贴出来,以供初次使用的朋友们参考. 资源下载 yii2.0-ueditor下载路径: https://link.jiansh ...

  2. vuex 闲置状态重置方案

    前言 大型单页应用(后面都是指spa),我们往往会通过使用状态管理器 vuex 去解决组件间状态共享与状态传递等问题.这种应用少则几十个单页,多则上百个单页.随着路由的频繁切换,每个路由对应的 vue ...

  3. iOS日期转换之UTC/GMT时间格式

    GMT只需要将代码中的UTC替换为GMT即可 //将本地日期字符串转为UTC日期字符串 //本地日期格式:2013-08-03 12:53:51 //可自行指定输入输出格式 -(NSString *) ...

  4. Android基础新手教程——4.3.2 BroadcastReceiver庖丁解牛

    Android基础新手教程--4.3.2 BroadcastReceiver庖丁解牛 标签(空格分隔): Android基础新手教程 本节引言: 上节我们对BroadcastReceiver已经有了一 ...

  5. CentOS用rpm升级glibc

    CentOS用rpm升级glibc #! /bin/sh # update glibc to 2.23 for CentOS 6 wget http://cbs.centos.org/kojifile ...

  6. Firefox访问https的网站,一直提示不安全

    http://mozilla.com.cn/thread-374897-1-1.html 要激活此功能步骤如下: 在地址栏键入"about:config" 点击“我了解此风险” 在 ...

  7. iRedMail邮件系统配置简易视频安装教程

    iRedMail邮件系统配置简易视频安装教程        iRedMail邮件系统配置简易视频安装教程 iRedMail中文名为“艾瑞得邮件系统”, 属于开源的企业邮件解决方案,但其性能不逊于任何商 ...

  8. POSTGRESQL NO TABLE

    POSTGRESQL EXTENDING SQL GRIGGER PROCEDURAL

  9. vue-cli · Failed to download repo vuejs-templates/webpack-simple: tunneling socket could not be established, cause=connect ECONNREFUSED 127.0.0.1:8086 && vue init webpack-simple xxx

    vue init webpack-simple mywork报错如下: vue-cli · Failed to download repo vuejs-templates/webpack-simple ...

  10. 51nod 矩阵取数问题

    一个N*N矩阵中有不同的正整数,经过这个格子,就能获得相应价值的奖励,从左上走到右下,只能向下向右走,求能够获得的最大价值. f[i][j] = max(f[i-1][j], f[i][j-1]) + ...