文件上传, 打开, 删除操作

protected void Btn_Up_Click(object sender, EventArgs e)
    {

// Specify the path on the server to 
        // save the uploaded file to. 
        // String savePath = @"D:/WebSite/FileUpload/UploadedImages/";
        String savePath = @"\\192.168.1.188\temp\00-T1\";

// Before attempting to perform operations 
        // on the file, verify that the FileUpload  
        // control contains a file. 
        if (FileUpload1.HasFile)
        {
            // Get the name of the file to upload. 
            String fileName = FileUpload1.FileName;

// Append the name of the file to upload to the path. 
            savePath += fileName;

// Call the SaveAs method to save the  
            // uploaded file to the specified path. 
            // This example does not perform all 
            // the necessary error checking.                
            // If a file with the same name 
            // already exists in the specified path,   
            // the uploaded file overwrites it. 
            FileUpload1.SaveAs(savePath);

// Notify the user of the name of the file 
            // was saved under.
 
            //UploadStatusLabel.Text = "Your file was saved as " + fileName;

//Response.Write("<script>alert(‘你的文件保存在 ‘" + fileName + "‘!‘)</script>");
            this.Label1.Text = "你的文件保存在 ‘" + savePath + "‘!";

}
        else
        {
            // Notify the user that a file was not uploaded. 
            //UploadStatusLabel.Text = "You did not specify a file to upload.";
            ClientScriptManager scriptManager = ((Page)System.Web.HttpContext.Current.Handler).ClientScript;
            scriptManager.RegisterStartupScript(typeof(string), "", "alert(‘你没有指定文件名上传 ‘);", true);
        }

}

protected void Btn_Open_Click(object sender, EventArgs e)
    {
        try
        {

System.Diagnostics.Process.Start(@"\\192.168.1.188\temp\00-T1\2.xlsx");
        }
        catch (Exception ex)
        {
            //Response.Write("<script language=‘javascript‘>alert(‘" + ex.Message.ToString() + "‘);</script>");
            ClientScriptManager scriptManager = ((Page)System.Web.HttpContext.Current.Handler).ClientScript;
            scriptManager.RegisterStartupScript(typeof(string), "", "alert(‘" + ex.Message.ToString() + "‘);", true);
        }

}

protected void Btn_Clearn_Click(object sender, EventArgs e)
    {
        //获得图片的服务器路径
        //string delFile = Server.MapPath("~/photo/img1.JPG");
        string delFile [email protected]"\\192.168.1.188\temp\00-T1\1.xlsx";

//删除图片
        File.Delete(delFile);
    }

//*****************************************

<br />
        <br />
          &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
        <asp:FileUpload ID="FileUpload1" runat="server" />
        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
        <asp:Label ID="Label1" runat="server" Text="显示:" Width="409px"></asp:Label>
        <br />
        <br />
        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
        <asp:Button ID="Btn_Up" runat="server" onclick="Btn_Up_Click"
            Text="Up_test" Width="76px" />
        &nbsp;&nbsp;&nbsp;&nbsp;
        <asp:Button ID="Btn_Clearn" runat="server" onclick="Btn_Clearn_Click"
            Text="Clearn" style="height: 26px" Width="77px" />
        <br />
        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
        <asp:Button ID="Btn_Open" runat="server" onclick="Btn_Open_Click" Text="Open"
            Width="76px" />
        <br />
        <br />

//*****************************************

时间: 2024-10-10 14:26:13

文件上传, 打开, 删除操作的相关文章

java操作FTP,实现文件上传下载删除操作

上传文件到FTP服务器: /** * Description: 向FTP服务器上传文件 * @param url FTP服务器hostname * @param port FTP服务器端口,如果默认端口请写-1 * @param username FTP登录账号 * @param password FTP登录密码 * @param path FTP服务器保存目录 * @param filename 上传到FTP服务器上的文件名 * @param input 输入流 * @return 成功返回t

Springmvc file多附件上传 显示 删除操作

之前项目需求要做一个多附件上传 并显示上传文件 带删除操作 一筹莫展之际搜到某个兄弟发的博客感觉非常好用被我copy下来了此贴算是改良版 再次感谢(忘记叫什么了时间也有点久没有历史记录了)先上图 基于springmvc附件上传 所需jar包 commons.fileupload-1.2.0.jar commons.io-1.4.0.jar 这个是我使用的jar包有需要的可以直接百度网盘下载 里面有好几个版本 自行选择 放在lib下面 使用的话maven 直接下载也可以 链接:https://pa

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" na

文件上传下载删除

<form action="newFile" method="post" enctype="multipart/form-data"> <input type="file" name="file"> <input type="submit" value="上传"> </form> <a href="dow

文件上传/下载/删除

[文件上传]public void BtnFileUpLoad() { try{ if (FileUpLoad.PostedFile.FileName != "") { string path = Server.MapPath("~/Uploads/"); string NowTime = DateTime.Now.ToString("yyyyMMddHHmmss"); int pos = FileUpLoad.FileName.IndexOf(

Java jsp servlet 实现文件上传 最简单操作

|--实现文件上传的方式 1.进入http://commons.apache.org/proper/commons-fileupload/using.html 2.点击用户指南 3.对着用户指南一步步复制粘贴,并把代码撸成自己想要的样子 补充:记得要将commons-io-2.4.jar和commons-fileupload-1.2.2.jar这两个包放到编译器里面 |--现成的代码 1 <%-- 2 Created by IntelliJ IDEA. 3 User: Administrator

又拍云 Node.js 实现文件上传、删除

Node.js 服务端 使用 Node.js + Express.js 实现 服务端 const express = require("express"); const app = express(); const axios = require('axios'); app.set('port', process.env.PORT || 8082); // 静态资源目录,这里放在了根目录,生产环境不允许这样 app.use(express.static(__dirname)); //

通用类库-FTPClient帮助类,实现文件上传,目录操作,下载等动作

直接上代码,这个也是我在网上找到的,自己测试修改后才公布出来的,大家可以放心使用,好的东西要分享,随时记录下来,好记性不如烂笔头,这个非常适合工作的. 1 //------------------------------------------------------------------------------------- 2 // All Rights Reserved , Copyright (C) 2016 , ZTO , Ltd . 3 //--------------------

Struts学习之 实现文件上传、下载操作

一.Struts-cofig.xml流程图 二.register.jsp页面文件 <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1