修改
这是表格的创建脚本,为了简洁而减去了对键的约束。
CREATE TABLE [dbo].[ProfileFile](
[ID] [int] IDENTITY(1,1) NOT NULL,
[ProfileID] [int] NOT NULL,
[FileTypeId] [int] NOT NULL,
[Data] [image] NOT NULL
修改
尝试绕过NHibernate访问服务层中的数据
byte[] temp = (byte[])this._baseModelRepository.CurrentSession.CreateSQLQuery("SELECT Data FROM ProfileFile WHERE ProfileID = :ID").SetParameter("ID", id).UniqueResult();
修改 检查保存在db中的二进制数据后,似乎整个文件已上传,我的问题实际上是显示图像。
图像未呈现但我可以按照操作链接下载文件,但它被切断为8KB。
ProfileFile Model类由NHibernate生成的数据字段
public virtual System.Byte[] Data { get; set; }
在设置此项时,我现在硬编码了MIME类型和文件名。
public ActionResult GetProfilePhotoByID(int profileID)
{
var profileFile= //Load file object from DB by profileID
byte[] byteArray = profileFile.Data;
string mimeType = "image/jpg";
string fileName = "ProfilePhoto.JPG";
return File(byteArray, mimeType, fileName);
}
使用调试器我发现profileFile.Data的大小是8000.也许这是NHibernate的限制?
此外,这是运行IIS和我在Chrome,Firefox和IE中获得相同的效果,但主要是在Chrome中测试。
原始问题: 我正在尝试允许用户上传个人资料照片,然后我会在他们的个人资料页面上提供这些照片。遗憾的是,图像文件未完全上传,并以8 KB的速度被截断。以下是一些更重要的代码段的简化版本。
索引视图片段
@using (Html.BeginForm("Index", "Home", FormMethod.Post, new { id = "profileform", enctype = "multipart/form-data" }))
<input type="file" id="photo" name="photo" />
控制器帖子操作有HttpPostedFileBase photo
参数
byte[] input;
if (photo != null && photo.ContentLength > 0)
{
input = new byte[photo.ContentLength];
photo.InputStream.Read(input, 0, photo.ContentLength);
if (model.ProfileFiles == null)
{
model.ProfileFiles = new List<Core.Model.ProfileFiles>();
}
model.ProfileFiles.Add(new Core.Model.ProfileFiles()
{
ProfileID = model.ID,
Profile = model,
Data = input
});
}
使用NHibernate生成模型类。相关领域是
// One To Many:
public virtual IList<ProfileFile> ProfileFiles { get; set; }
如果需要更多信息,请发表评论。
答案 0 :(得分:1)
解决了这个问题,并且还使用了NHibernate,使用Peter Gluck's answer来解决相关问题。
var persistenceModel = AutoMap.AssemblyOf<Model.BaseModel>()
.Override<Model.ProfileFile>(map =>
{
// Sets max length of byte[] retrieved from image column of DB
map.Map(x => x.Data).Length(2147483647);
})
... etc.
答案 1 :(得分:0)
尝试在Web.config
<system.web>
<!--50MB-->
<httpRuntime maxRequestLength="51200"/>
</system.web>
和
<system.webServer>
<security>
<requestFiltering>
<!--50MB-->
<requestLimits maxAllowedContentLength="52428795" />
</requestFiltering>
</security>
</system.webServer>
有关maxRequestLength
和maxAllowedContentLength
的说明,请参阅this question。
答案 2 :(得分:0)
@using (Html.BeginForm("Index", "Home", FormMethod.Post, new { enctype = "multipart/form-data" }))
{
<input id="file" type="file" name="file" />
<input type="submit" value="Upload" class="btn" />
}
public ActionResult ChangePhoto(HttpPostedFileBase file)
{
if (file != null && file.ContentLength > 0)
{
using (System.Drawing.Image Img = System.Drawing.Image.FromStream(file.InputStream))
{
Img.Save(Server.MapPath("~") +"/myimage.png", Img.RawFormat);
}
}