Struts2 文件上传,下载,删除

本文介绍了:
1.基于表单的文件上传
2.Struts 2 的文件下载
3.Struts2.文件上传
4.使用FileInputStream FileOutputStream文件流来上传
5.使用FileUtil上传
6.使用IOUtil上传
7.使用IOUtil上传
8.使用数组上传多个文件
9.使用List上传多个文件

----1.基于表单的文件上传-----

fileupload.jsp

    <body>  <form action="showFile.jsp" name="myForm" method="post" enctype="multipart/form-data">  选择上传的文件   <input type="file" name="myfile"><br/><br/>  <input type="submit" name="mySubmit" value="上传"/>    </form>  </body>  

showFile.jsp

    <body>  上传的文件的内容如下:   <%   InputStream is=request.getInputStream();   InputStreamReader isr=new InputStreamReader(is);   BufferedReader br=new BufferedReader(isr);   String content=null;   while((content=br.readLine())!=null){   out.print(content+"<br/>");   }   %>  </body>  

----2.手动上传-----

  1. 通过二进制刘获取上传文件的内容,并将上传的文件内容保存到服务器的某个目录,这样就实现了文件上传。由于这个处理过程完全依赖与开发自己处理二进制流,所以也称为“手动上传”。   
  2. 从上面的第一个例子可以看到,使用二进制流获取的上传文件的内容与实际文件的内容有还是有一定的区别,包含了很多实际文本中没有的字符。所以需要对获取的内容进行解析,去掉额外的字符。

----3 Struts2.文件上传----

  1. Struts2中使用Common-fileUpload文件上传框架,需要在web应用中增加两个Jar 文件, 即 commons-fileupload.jar. commons-io.jar   
  2. 需要使用fileUpload拦截器:具体的说明在 struts2-core-2.3.4.jar \org.apache.struts2.interceptor\FileUploadInterceptor.class 里面    
  3. 下面来看看一点源代码 
    public class FileUploadInterceptor extends AbstractInterceptor {   private static final long serialVersionUID = -4764627478894962478L;   protected static final Logger LOG = LoggerFactory.getLogger(FileUploadInterceptor.class);   private static final String DEFAULT_MESSAGE = "no.message.found";   protected boolean useActionMessageBundle;   protected Long maximumSize;   protected Set<String> allowedTypesSet = Collections.emptySet();   protected Set<String> allowedExtensionsSet = Collections.emptySet();   private PatternMatcher matcher;   @Inject  public void setMatcher(PatternMatcher matcher) {   this.matcher = matcher;   }   public void setUseActionMessageBundle(String value) {   this.useActionMessageBundle = Boolean.valueOf(value);   }   //这就是struts.xml 中param为什么要配置为 allowedExtensions   public void setAllowedExtensions(String allowedExtensions) {   allowedExtensionsSet = TextParseUtil.commaDelimitedStringToSet(allowedExtensions);   }   //这就是struts.xml 中param为什么要配置为 allowedTypes 而不是 上面的allowedTypesSet    public void setAllowedTypes(String allowedTypes) {   allowedTypesSet = TextParseUtil.commaDelimitedStringToSet(allowedTypes);   }   public void setMaximumSize(Long maximumSize) {   this.maximumSize = maximumSize;   }   }  
官员文件初始值大小 上面的类中的说明   
<li>maximumSize (optional) - the maximum size (in bytes) that the interceptor will allow a file reference to be set   * on the action. Note, this is <b>not</b> related to the various properties found in struts.properties.   * Default to approximately 2MB.</li>  
具体说的是这个值在struts.properties 中有设置。 下面就来看 里面的设置   ### Parser to handle HTTP POST requests, encoded using the MIME-type multipart/form-data   文件上传解析器     
# struts.multipart.parser=cos  
# struts.multipart.parser=pell  
#默认 使用jakata框架上传文件   
struts.multipart.parser=jakarta  #上传时候 默认的临时文件目录     
# uses javax.servlet.context.tempdir by default   
struts.multipart.saveDir=   #上传时候默认的大小   
struts.multipart.maxSize=2097152

案例:使用FileInputStream FileOutputStream文件流来上传

action.java

    package com.sh.action;   import java.io.File;   import java.io.FileInputStream;   import java.io.FileOutputStream;   import org.apache.struts2.ServletActionContext;   import com.opensymphony.xwork2.ActionSupport;   public class MyUpAction extends ActionSupport {   private File upload; //上传的文件   private String uploadContentType; //文件的类型   private String uploadFileName; //文件名称   private String savePath; //文件上传的路径   //注意这里的保存路径   public String getSavePath() {   return ServletActionContext.getRequest().getRealPath(savePath);   }   public void setSavePath(String savePath) {   this.savePath = savePath;   }   @Override  public String execute() throws Exception {   System.out.println("type:"+this.uploadContentType);   String fileName=getSavePath()+"\\"+getUploadFileName();   FileOutputStream fos=new FileOutputStream(fileName);   FileInputStream fis=new FileInputStream(getUpload());   byte[] b=new byte[1024];   int len=0;   while ((len=fis.read(b))>0) {   fos.write(b,0,len);   }   fos.flush();   fos.close();   fis.close();   return SUCCESS;   }   //get set   }  

struts.xml

 

    <?xml version="1.0" encoding="UTF-8" ?>  <!DOCTYPE struts PUBLIC   "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"   "http://struts.apache.org/dtds/struts-2.3.dtd">  <struts>    <constant name="struts.i18n.encoding" value="utf-8"/>  <constant name="struts.devMode" value="true"/>     <constant name="struts.convention.classes.reload" value="true" />    <constant name="struts.multipart.saveDir" value="f:/tmp"/>  <package name="/user" extends="struts-default">  <action name="up" class="com.sh.action.MyUpAction">  <result name="input">/up.jsp</result>  <result name="success">/success.jsp</result>  <!-- 在web-root目录下新建的一个 upload目录 用于保存上传的文件 -->  <param name="savePath">/upload</param>  <interceptor-ref name="fileUpload">  <!--采用设置文件的类型 来限制上传文件的类型-->  <param name="allowedTypes">text/plain</param>  <!--采用设置文件的后缀来限制上传文件的类型 -->  <param name="allowedExtensions">png,txt</param>  <!--设置文件的大小 默认为 2M [单位:byte] -->  <param name="maximumSize">1024000</param>  </interceptor-ref>               <interceptor-ref name="defaultStack"/>  </action>  </package>  </struts>  

 

up.jsp

 

    <body>  <h2>Struts2 上传文件</h2>  <s:fielderror/>  <s:form action="up" method="post" name="upform" id="form1" enctype="multipart/form-data" theme="simple">  选择文件:   <s:file name="upload" cssStyle="width:300px;"/>  <s:submit value="确定"/>  </s:form>         </body>  

 

success.jsp

 

    <body>  <b>上传成功!</b>  <s:property value="uploadFileName"/><br/>  [img]<s:property value="'upload/'+uploadFileName"/>[/img]   </body>  

 

案例:使用FileUtil上传

action.java

 

    package com.sh.action;   import java.io.File;   import java.io.IOException;   import java.text.DateFormat;   import java.text.SimpleDateFormat;   import java.util.Date;   import java.util.Random;   import java.util.UUID;   import org.apache.commons.io.FileUtils;   import org.apache.struts2.ServletActionContext;   import com.opensymphony.xwork2.ActionContext;   import com.opensymphony.xwork2.ActionSupport;   public class FileUtilUpload extends ActionSupport {   private File image; //文件   private String imageFileName; //文件名   private String imageContentType;//文件类型   public String execute(){   try {   if(image!=null){   //文件保存的父目录   String realPath=ServletActionContext.getServletContext()   .getRealPath("/image");   //要保存的新的文件名称   String targetFileName=generateFileName(imageFileName);   //利用父子目录穿件文件目录   File savefile=new File(new File(realPath),targetFileName);   if(!savefile.getParentFile().exists()){   savefile.getParentFile().mkdirs();   }   FileUtils.copyFile(image, savefile);   ActionContext.getContext().put("message", "上传成功!");   ActionContext.getContext().put("filePath", targetFileName);   }   } catch (IOException e) {   // TODO Auto-generated catch block   
                e.printStackTrace();   }   return "success";   }   /**  * new文件名= 时间 + 随机数  * @param fileName: old文件名  * @return new文件名  */  private String generateFileName(String fileName) {   //时间   DateFormat df = new SimpleDateFormat("yyMMddHHmmss");      String formatDate = df.format(new Date());   //随机数   int random = new Random().nextInt(10000);    //文件后缀   int position = fileName.lastIndexOf(".");      String extension = fileName.substring(position);      return formatDate + random + extension;      }   //get set   
      }  

 

struts.xml

 

    <action name="fileUtilUpload" class="com.sh.action.FileUtilUpload">  <result name="input">/fileutilupload.jsp</result>  <result name="success">/fuuSuccess.jsp</result>  </action>  

 

fileutilupload.jsp

 

    <form action="${pageContext.request.contextPath }/fileUtilUpload.action"    enctype="multipart/form-data" method="post">  文件:<input type="file" name="image"/>  <input type="submit" value="上传"/>  </form>  

 

fuuSuccess.jsp

 

    <body>  <b>${message}</b>  ${imageFileName}<br/>  <img src="upload/${filePath}"/>  </body>  

 

案例:使用IOUtil上传

action.java

    package com.sh.action;   import java.io.File;   import java.io.FileInputStream;   import java.io.FileOutputStream;   import java.text.DateFormat;   import java.text.SimpleDateFormat;   import java.util.Date;   import java.util.UUID;   import org.apache.commons.io.IOUtils;   import org.apache.struts2.ServletActionContext;   import com.opensymphony.xwork2.ActionContext;   import com.opensymphony.xwork2.ActionSupport;   public class IOUtilUpload extends ActionSupport {   private File image; //文件   private String imageFileName; //文件名   private String imageContentType;//文件类型   public String execute(){   try {     if(image!=null){   //文件保存的父目录   String realPath=ServletActionContext.getServletContext()   .getRealPath("/image");   //要保存的新的文件名称   String targetFileName=generateFileName(imageFileName);   //利用父子目录穿件文件目录   File savefile=new File(new File(realPath),targetFileName);   if(!savefile.getParentFile().exists()){   savefile.getParentFile().mkdirs();   }   FileOutputStream fos=new FileOutputStream(savefile);   FileInputStream fis=new FileInputStream(image);   //如果复制文件的时候 出错了返回 值就是 -1 所以 初始化为 -2   Long result=-2L;   //大文件的上传   int  smresult=-2; //小文件的上传   //如果文件大于 2GB   if(image.length()>1024*2*1024){   result=IOUtils.copyLarge(fis, fos);   }else{   smresult=IOUtils.copy(fis, fos);    }   if(result >-1 || smresult>-1){   ActionContext.getContext().put("message", "上传成功!");   }   ActionContext.getContext().put("filePath", targetFileName);   }   } catch (Exception e) {     e.printStackTrace();     }     return SUCCESS;     }   /**  * new文件名= 时间 + 全球唯一编号  * @param fileName old文件名  * @return new文件名  */  private String generateFileName(String fileName) {   //时间   DateFormat df = new SimpleDateFormat("yy_MM_dd_HH_mm_ss");      String formatDate = df.format(new Date());   //全球唯一编号   String uuid=UUID.randomUUID().toString();   int position = fileName.lastIndexOf(".");      String extension = fileName.substring(position);      return formatDate + uuid + extension;      }   //get set   }  

struts.xml

 

    <action name="iOUtilUpload" class="com.sh.action.IOUtilUpload">  <result name="input">/ioutilupload.jsp</result>  <result name="success">/iuuSuccess.jsp</result>  </action>  

 

ioutilupload.jsp

 

<form action="${pageContext.request.contextPath }/iOUtilUpload.action"    enctype="multipart/form-data" method="post">  文件:<input type="file" name="image"/>  <input type="submit" value="上传"/>  
</form> 

 

iuuSuccess.jsp

 

    <body>  <b>${message}</b>  ${imageFileName}<br/>  <img src="image/${filePath}"/>  </body>  

 

案例:删除服务器上的文件

 

    /**  * 从服务器上 删除文件  * @param fileName 文件名  * @return true: 从服务器上删除成功   false:否则失败  */  public boolean delFile(String fileName){   File file=new File(fileName);   if(file.exists()){   return file.delete();   }   return false;   }  

 

案例:使用数组上传多个文件

action.java

 

    package com.sh.action;   import java.io.File;   import java.io.FileInputStream;   import java.io.FileOutputStream;   import java.util.Random;   import org.apache.struts2.ServletActionContext;   import com.opensymphony.xwork2.ActionContext;   import com.opensymphony.xwork2.ActionSupport;   /**  * @author Administrator  *  */  public class ArrayUpload extends ActionSupport {   private File[] image;   private String[] imageContentType;   private String[] imageFileName;   private String path;   public String getPath() {   return ServletActionContext.getRequest().getRealPath(path);   }   public void setPath(String path) {   this.path = path;   }   @Override  public String execute() throws Exception {   for(int i=0;i<image.length;i++){   imageFileName[i]=getFileName(imageFileName[i]);   String targetFileName=getPath()+"\\"+imageFileName[i];   FileOutputStream fos=new FileOutputStream(targetFileName);   FileInputStream fis=new FileInputStream(image[i]);   byte[] b=new byte[1024];   int len=0;   while ((len=fis.read(b))>0) {   fos.write(b, 0, len);   }   }   return SUCCESS;   }   private String getFileName(String fileName){   int position=fileName.lastIndexOf(".");   String extension=fileName.substring(position);   int radom=new Random().nextInt(1000);   return ""+System.currentTimeMillis()+radom+extension;   }   //get set   }  

 

struts.xml

    <action name="arrayUpload" class="com.sh.action.ArrayUpload">  <interceptor-ref name="fileUpload">  <param name="allowedTypes">  image/x-png,image/gif,image/bmp,image/jpeg   </param>  <param name="maximumSize">10240000</param>  </interceptor-ref>  <interceptor-ref name="defaultStack"/>  <param name="path">/image</param>  <result name="success">/arraySuccess.jsp</result>  <result name="input">/arrayupload.jsp</result>  </action>  

arrayUpload.jsp

    <body>  ===========多文件上传=================   <form action="${pageContext.request.contextPath }/arrayUpload.action"    enctype="multipart/form-data" method="post">  文件1:<input type="file" name="image"/><br/>  文件2:<input type="file" name="image"/><br/>  文件3:<input type="file" name="image"/>  <input type="submit" value="上传"/>  </form>  </body>  

arraySuccess.jsp

    <body>  <b>使用数组上传成功s:iterator</b>  <s:iterator value="imageFileName" status="st"><s:property value="#st.getIndex()+1"/>个图片:<br/>  [img]image/<s:property value="imageFileName[#st.getIndex()][/img]"/>  </s:iterator>  <br/><b>使用数组上传成功c:foreach</b>  <c:forEach var="fn" items="${imageFileName}" varStatus="st">  第${st.index+1}个图片:<br/>  <img src="image/${fn}"/>  </c:forEach>  </body>  

案例:使用List上传多个文件

action.java

 

    package com.sh.action;   import java.io.File;   import java.io.FileInputStream;   import java.io.FileOutputStream;   import java.util.List;   import java.util.Random;   import javax.servlet.Servlet;   import org.apache.struts2.ServletActionContext;   import com.opensymphony.xwork2.ActionSupport;   public class ListUpload extends ActionSupport {   private List<File> doc;   private List<String> docContentType;   private List<String> docFileName;   private String path;   @Override  public String execute() throws Exception {   for(int i=0;i<doc.size();i++){   docFileName.set(i, getFileName(docFileName.get(i)));   FileOutputStream fos=new FileOutputStream(getPath()+"\\"+docFileName.get(i));   File file=doc.get(i);   FileInputStream fis=new FileInputStream(file);   byte [] b=new byte[1024];   int length=0;   while((length=fis.read(b))>0){   fos.write(b,0,length);   }   }   return SUCCESS;   }   public String getFileName(String fileName){   int position=fileName.lastIndexOf(".");   String extension=fileName.substring(position);   int radom=new Random().nextInt(1000);   return ""+System.currentTimeMillis()+radom+extension;   }   public String getPath() {   return ServletActionContext.getRequest().getRealPath(path);   }  

 

strust.xml

    <action name="listUpload" class="com.sh.action.ListUpload">  <interceptor-ref name="fileUpload">  <param name="allowedTypes">  image/x-png,image/gif,image/bmp,image/jpeg   </param>  <param name="maximumSize">  10240000   </param>  </interceptor-ref>  <interceptor-ref name="defaultStack"/>  <param name="path">/image</param>  <result name="success">/listSuccess.jsp</result>  <result name="input">/listupload.jsp</result>  </action>  

listUpload.jsp

    <body>  ===========List 多文件上传=================   <form action="${pageContext.request.contextPath }/listUpload.action"    enctype="multipart/form-data" method="post">  文件1:<input type="file" name="doc"/><br/>  文件2:<input type="file" name="doc"/><br/>  文件3:<input type="file" name="doc"/>  <input type="submit" value="上传"/>  </form>  <s:fielderror/>  <s:form action="listUpload" enctype="multipart/form-data">  <s:file name="doc" label="选择上传的文件"/>  <s:file name="doc" label="选择上传的文件"/>  <s:file name="doc" label="选择上传的文件"/>  <s:submit value="上传"/>  </s:form>  </body>  

listSuccess.jsp

    <body>  <h3>使用List上传多个文件 s:iterator显示</h3>  <s:iterator value="docFileName" status="st"><s:property value="#st.getIndex()+1"/>个图片:   <br/>  <img src="image/<s:property value="docFileName.get(#st.getIndex())"/>"/><br/>  </s:iterator>  <h3>使用List上传多个文件 c:foreach显示</h3>  <c:forEach var="fn" items="${docFileName}" varStatus="st">  第${st.index}个图片<br/>  <img src="image/${fn}"/>  </c:forEach>  </body>  

案例:Struts2 文件下载

Struts2支持文件下载,通过提供的stram结果类型来实现。指定stream结果类型是,还需要指定inputName参数,此参数表示输入流,作为文件下载入口。 

简单文件下载 不含中文附件名

    package com.sh.action;   import java.io.InputStream;   import org.apache.struts2.ServletActionContext;   import com.opensymphony.xwork2.ActionSupport;   public class MyDownload extends ActionSupport {   private String inputPath;   //注意这的  方法名 在struts.xml中要使用到的   public InputStream getTargetFile() {   System.out.println(inputPath);   return ServletActionContext.getServletContext().getResourceAsStream(inputPath);   }   public void setInputPath(String inputPath) {   this.inputPath = inputPath;   }   @Override  public String execute() throws Exception {   // TODO Auto-generated method stub   return SUCCESS;   }   }  

Struts.xml

    <action name="mydownload" class="com.sh.action.MyDownload">  <!--给action中的属性赋初始值-->  <param name="inputPath">/image/1347372060765110.jpg</param>  <!--给注意放回后的 type类型-->  <result name="success" type="stream">  <!--要下载文件的类型-->  <param name="contentType">image/jpeg</param>  <!--action文件输入流的方法 getTargetFile()-->  <param name="inputName">targetFile</param>  <!--文件下载的处理方式 包括内联(inline)和附件(attachment)两种方式--->  <param name="contentDisposition">attachment;filename="1347372060765110.jpg"</param>  <!---下载缓冲区的大小-->  <param name="bufferSize">2048</param>  </result>  </action>  

down.jsp

    <body>  <h3>Struts 2 的文件下载</h3> <br>  <a href="mydownload.action">我要下载</a>  </body>  

文件下载,支持中文附件名 

action

 

    package com.sh.action;   import java.io.InputStream;   import org.apache.struts2.ServletActionContext;   import com.opensymphony.xwork2.ActionSupport;   public class DownLoadAction extends ActionSupport {   private final String DOWNLOADPATH="/image/";   private String fileName;   //这个方法 也得注意 struts.xml中也会用到   public InputStream getDownLoadFile(){   return ServletActionContext.getServletContext().getResourceAsStream(DOWNLOADPATH+fileName);   }   //转换文件名的方法 在strust.xml中会用到   public String getDownLoadChineseFileName(){   String chineseFileName=fileName;   try {   chineseFileName=new String(chineseFileName.getBytes(),"ISO-8859-1");   } catch (Exception e) {   e.printStackTrace();   }   return chineseFileName;   }   @Override  public String execute() throws Exception {   // TODO Auto-generated method stub   return SUCCESS;   }   public String getFileName() {   return fileName;   }   public void setFileName(String fileName) {   this.fileName = fileName;   }   }  

 

struts.xml

    <action name="download" class="com.sh.action.DownLoadAction">  <param name="fileName">活动主题.jpg</param>  <result name="success" type="stream">  <param name="contentType">image/jpeg</param>  <!-- getDownLoadFile() 这个方法--->  <param name="inputName">downLoadFile</param>  <param name="contentDisposition">attachment;filename="${downLoadChineseFileName}"</param>  <param name="bufferSize">2048</param>  </result>  </action>  

down1.jsp

    <body>  <h3>Struts 2 的文件下载</h3> <br>  <a href="download.action">我要下载</a>  </body>  

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/263373.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

LeetCode—44. 通配符匹配(困难)

44. 通配符匹配&#xff08;困难&#xff09; 题目描述&#xff1a; 给定一个字符串 (s) 和一个字符模式 &#xff0c;实现一个支持 ‘?’ 和 ‘*’ 的通配符匹配。 ‘?’ 可以匹配任何单个字符。 ‘*’ 可以匹配任意字符串&#xff08;包括空字符串&#xff09;。 两个字…

怎样和客户一起搞定需求

项目刚刚开始的时期&#xff0c;项目经理做的主要事情是搜集客户需求&#xff0c;这是一个项目经理非常头疼的阶段&#xff0c;合作的磨合刚刚开始&#xff0c;需求问题上的失误又会导致无穷的后患。三种客户类型&#xff1a; 1 的确很专业。能提供基本可用的文档&#xff0c;能…

字符串后面去0、补0

去掉0 str.replaceAll("0$", "") 补0至n位 String.format("%-ns",swjgPrefix ).replace( ,0) 前面的话不要“-”号 0可以换成任意字符转载于:https://www.cnblogs.com/IceBlueBrother/p/11208433.html

疑问:C#中的委托

我这几天一直在看C#的书&#xff0c;知道了委托是怎么回事&#xff0c;但我一直不能理解这个委托是用在什么地方&#xff0c;有什么好处&#xff0c;请高手指点。 转载于:https://www.cnblogs.com/yjlft/archive/2006/04/03/365443.html

火狐、IE浏览器实现Extjs的grid表格的复制、粘贴

2019独角兽企业重金招聘Python工程师标准>>> 从后台获取参数&#xff0c;一次填入ext&#xff1a;grid网状表格&#xff0c;发现表格内的数据不能复制粘贴&#xff0c;只能read...&#xff0c;火狐和IE 11都不能复制。 火狐解决方案 局部定义表格复制、粘贴的样式&a…

LeetCode—279. 完全平方数

279. 完全平方数 题目描述&#xff1a; 给你一个整数 n &#xff0c;返回和为 n 的完全平方数的最少数量 。 完全平方数 是一个整数&#xff0c;其值等于另一个整数的平方&#xff1b;换句话说&#xff0c;其值等于一个整数自乘的积。例如&#xff0c;1、4、9 和 16 都是完全…

Form表单的主要Content-Type

在Spa单页面横行的时代&#xff0c;前后端交互基本都是Json交互&#xff08;也有通过FormData的&#xff0c;比如上传文件&#xff09;。而在之前的Jsp&#xff0c;Php前后不分家的时候&#xff0c;前后交互好大一部分都是通过Form表单来完成的。From标签个属性叫 enctype&…

百慕大三角和中国娱乐界

百慕大三角神秘莫测玄机重重哥伦布在他的航海日志中记载曾经见到"拥有钢铁幕墙的巨型船只"而这些船只却来自当代的美国航运巨子一架波音747在该海域坠毁躲在洗手间的6岁小女孩是唯一的幸存者但是在两个小时之后被营救出来时她已经变成了白发苍苍的老奶奶有多少船只和…

perl子例程

2019独角兽企业重金招聘Python工程师标准>>> sub 子例程名($$)指定两个标量的参数 ($)指定一个数组 按引用调用 符号引用 typeglob 类似于UNIX文件系统中的软链接 星号(*)适用于任意类型的变量&#xff0c;包括标量&#xff0c;数组&#xff0c;散列&#xff0c;文件…

基于并查集的kruskal算法

#include <iostream> //并查集的kruskal算法using namespace std;const int max_ve1005,max_ed15005;int n,m,i; //n,m分别记录顶点数和边数struct node{int par,ans;}vertex[max_ve]; //顶点struct Edge {int u,v,weigh;}edge[max_ed]; //边int…

LeetCode—282. 给表达式添加运算符(困难)

282. 给表达式添加运算符&#xff08;困难&#xff09; 题目描述&#xff1a; 给定一个仅包含数字 0-9 的字符串 num 和一个目标值整数 target &#xff0c;在 num 的数字之间添加 二元 运算符&#xff08;不是一元&#xff09;、- 或 * &#xff0c;返回 所有 能够得到 targe…

小程序 生成条形码barcode.js

1、下载barcode.js&#xff0c;新建一个文件wxbarcode.js用于计算条形码的宽高&#xff0c;以自适应不同手机屏显示 var barcode require(./barcode); function convert_length(length) {return Math.round(wx.getSystemInfoSync().windowWidth * length / 750); }function ba…

FormView在什么情况下自动生成模板项?

刚才在鼓捣GridView与FormView&#xff0c;记得前一段时间在做时&#xff0c;点击gridview中的一项会在formview中显示详细的数据&#xff0c;而在 formview中只有编写了ItemTemplate等模板才会显示&#xff0c;我清楚的记得上次我并没有手工去编写itemTemplate模板&#xff0c…

支持向量机的优缺点

原文&#xff1a;http://blog.sina.com.cn/s/blog_6d979ba00100oel2.htmlSVM有如下主要几个特点&#xff1a;(1)非线性映射是SVM方法的理论基础,SVM利用内积核函数代替向高维空间的非线性映射&#xff1b;(2)对特征空间划分的最优超平面是SVM的目标,最大化分类边际的思想是SVM方…

udp包大小选折及原因(mtu)

以太网(Ethernet)数据帧的长度必须在46-1500字节之间,这是由以太网的物理特性决定的.这个1500字节被称为链路层的MTU(最大传输单元).但这并不是指链路层的长度被限制在1500字节,其实这这个MTU指的是链路层的数据区.并不包括链路层的首部和尾部的18个字节.所以,事实上,这个1500字…

Java遍历Map的几种方式

方法一&#xff1a;使用lambda表达式 Map<Integer, Integer> temp new HashMap<>(); temp.put(1,1); temp.put(2,1); temp.put(3,1); temp.forEach((k, v) -> System.out.println(v));其中&#xff0c;k是键&#xff0c;v是值 运行结果&#xff1a; 方法二&…

2019牛客暑期多校训练营(第一场) - B - Integration - 数学

https://ac.nowcoder.com/acm/contest/881/Bhttps://www.cnblogs.com/zaq19970105/p/11210030.html 试图改写多项式&#xff1a; \[\frac{1}{\prod_{i1}^{n}a_i^2x^2}\] 这个多项式用待定系数法设为&#xff1a; \[\frac{1}{\prod_{i1}^{n}a_i^2x^2}\sum_{i1}^{n}\frac{c_i}{a_…

ListBox的一个郁闷小问题!

ListBox的一个郁闷小问题&#xff01;浪费了我一个多小时&#xff01;极度郁闷。。。。。。生成的代码为这样的&#xff1a; <select name"Inc_Client_AccessManage1:ListBox1" size"5" multiple"multiple" id"Inc_Client_AccessManage1…

GNU/CPIO 学习小结

CPIO 是一种binary file archiver&#xff0c; 同时也定义了一种文件格式(file format). CPIO software utility 被作为tape archiver&#xff0c;它最初是作为PWB/UNIX(Programmers Workbech&#xff1a;1976&#xff0c; 在UNIX最开始在Bell Lab出现的时候&#xff0c;UNIX主…

Java使用数组作为Map的key

先说结论&#xff1a;Map使用数组作为key&#xff0c;存放的是其地址 我们用如下代码进行测试&#xff1a; 我们的本意是 将[‘a’,‘b’,‘c’]的字符数组存放入map且对应的value为1查询map中是否包含key为[‘a’,‘b’,‘c’]的键值对将[‘a’,‘b’,‘c’]的字符数组对应的…