A. shopex4.8.5怎么样可以把详细页面中链接的图片保存在本地服务器,变成我自己网站开头的链接地址的图片呢
直接复制 到word上,就可以全部复制进来了,也可以点击右键查看属性 看具体的链接地址 下载到本地
B. C#程序保存图片到服务器地址怎么写 我是这样的bitmap.save("http:\\192.168.0.105\F:\宝康\my sql连接测
//这是一个上传图片的例子,上传其他文件都一样
string strFileFullName = System.IO.Path.GetFileName(this.FileUpload1.PostedFile.FileName);
if (strFileFullName.Length > 0)
{
if (FileUpload1.HasFile)
{
string newFileName = GetNewFileName(strFileFullName);
string path = Server.MapPath("[服务器端存储图片的路径]" + newFileName);
string pathSaveImg = Server.MapPath("[服务器端存储图片的路径]" + newFileName);
this.FileUpload1.SaveAs(path);
[数据库字段]= "[服务器端存储图片的路径]" + newFileName;
}
else
{
MessageBox.Show(this, "找不到此图片"); return;
}
}
//跟据文件名产生一个由时间+随机数组成的一个新的文件名
//因为客户端上传的文件很可能会重名,所以要对文件名进行重命名
public static string GetNewFileName(string FileName)
{
Random rand = new Random();
string newfilename = DateTime.Now.Year.ToString() + DateTime.Now.Month.ToString() + "m" +
DateTime.Now.Day.ToString() + "d"
+ DateTime.Now.Second.ToString() + DateTime.Now.Minute.ToString()
+ DateTime.Now.Millisecond.ToString()
+ "a" + rand.Next(1000).ToString()
+ FileName.Substring(FileName.LastIndexOf("."), FileName.Length - FileName.LastIndexOf("."));
return newfilename;
}
祝你成功!!!
C. 我要在一个网页上传一张图片到服务器,然后保存图片的地址,在另一个页面显示图片
public class UploadAction extends ActionSupport {
//接收文件 名称需要和表单name名称一致
private File image;
//上传多个图片文件
private File[] images;
//上传文件类型[image]为表单name名称,ContentType为固定写法
private String imageContentType;
private String[] imagesContentType;
//上传文件名称[image]为表单name名称,FileName为固定写法
private String imageFileName;
private String[] imagesFileName;
//上传一个文件
public String upload(){
//将长传的文件存储到images文件夹下,首先根据images名称得到具体路径
String realPath = ServletActionContext.getServletContext().getRealPath("images");
File file = new File(new File(realPath),imageFileName);
//如果输入为空 没选择图片的话
if(image != null){
//判断文件夹存不存在
if(!file.getParentFile().exists()){
file.getParentFile().mkdir(); //创建一个文件夹
}
try {
FileUtils.File(image, file);
super.addActionError("上传成功");
} catch (IOException e) {
super.addActionError("上传失败");
e.printStackTrace();
}
}
return SUCCESS;
}
//上传多个文件
public String manyUpload(){
//将长传的文件存储到images文件夹下,首先根据images名称得到具体路径
String realPath = ServletActionContext.getServletContext().getRealPath("images");
System.out.println(realPath);
File file =null;
if(images != null){
try {
for (int i = 0; i <images.length ; i++) {
file = new File(new File(realPath),imagesFileName[i]);
FileUtils.File(images[i], file);
}
super.addActionError("上传成功");
} catch (IOException e) {
super.addActionError("上传失败");
e.printStackTrace();
}
}
return SUCCESS;
}
public File getImage() {
return image;
}
public void setImage(File image) {
this.image = image;
}
public String getImageContentType() {
return imageContentType;
}
public void setImageContentType(String imageContentType) {
this.imageContentType = imageContentType;
}
public String getImageFileName() {
return imageFileName;
}
public void setImageFileName(String imageFileName) {
this.imageFileName = imageFileName;
}
public File[] getImages() {
return images;
}
public void setImages(File[] images) {
this.images = images;
}
public String[] getImagesContentType() {
return imagesContentType;
}
public void setImagesContentType(String[] imagesContentType) {
this.imagesContentType = imagesContentType;
}
public String[] getImagesFileName() {
return imagesFileName;
}
public void setImagesFileName(String[] imagesFileName) {
this.imagesFileName = imagesFileName;
}
}
D. 已知图片的URL地址,用代码怎样保存到磁盘
我这是这么写的,应该很容易看懂吧
Private stream_Document As New ADODB.Stream
Public Sub SaveImageB(URL As String, SavePath As String)
Dim sFile
sFile = GetBody(URL) '取得图片的具休内容的过程
With stream_Document
.Type = 1 '以二进制模式打开
.Open
.write sFile '将字符串内容写入缓冲
.SaveToFile SavePath, 2 '将缓冲的内容写入文件
.Close
End With
End Sub
Private Function GetBody(URL)
' on error resume next
Dim Retrieval As New XMLHTTP30
'Set Retrieval = CreateObject("Microsoft.XMLHTTP")
With Retrieval
.Open "Get", URL, False, "", ""
.send
GetBody = .responseBody
End With
Set Retrieval = Nothing
End Function
vb里要先引用ADODB和XMLHTTP30,不懂可以问我
E. JS怎样将图片保存到服务器已经获得了图片数据
只能通过后台代码,比如java,C#,php,asp之类的编程语言,将js得到的图片信息上传到服务器的指定位置。
F. 用户上传的图片保存在哪里比如上传到自己博客的图片 传上去后把本地的删除了 那么网站上的图片保
图片保存在服务器上,数据库存储的是图片的链接地址
搭建完服务器后,会申请域名绑定服务器的IP,域名会指向服务器硬盘的一个文件夹内,图片存储在服务器域名的文件夹下,就会有地址了,就像接口的地址一样。
http://www.abc.com/index.php 就像这个,http://www.abc.com/这个是域名,域名下的index.php就是php程序。
G. 网站上图片是地址连接如何将图片全部保存电脑中
1、右击保存
2、alt+prtscr 画图---粘贴
H. 使用android上传图片到服务器,并且把图片保存到服务器的某个文件夹里
有两种方法,第一,把你的图片转成字节流,然后用post方法把字节流传到服务端,然后服务端接收到字节流之后,开启一个线程把它重新压缩成图片,保存在某个文件夹下面。
第二,开启一个线程,用socket直接把图片放到stream中传到服务端,服务端接收后保存到文件夹下。
I. 请问如何做到输入图片地址,然后图片下载到服务器
就像QQ空间中一样,复制到文章中图片之后然后提示下载到服务器,然后就能把那些图片下载到自己的QQ相册?请问这是如何实现的啊?
J. 已知本地文件路径,怎样将图片上传到服务器
一般采用的是FTP进行上传就可以了!可以去服务器厂商(正睿)的网上找找文件上传的相关文档参考一下,应该很快就清楚了!