簡體   English   中英

.stl 下載的文件無法打開或已損壞

[英].stl file downloaded not opening or corrupt

我在 c# Angular JS MVC 中下載.stl文件時遇到問題。 下載文件時,我無法打開 3d 形狀的文件或其他支持 stl 文件擴展名的軟件。

vm.FileDownload = function (id, hash,filename) {
        var defer = $q.defer();
        threeShapeRepo.getFile(id, hash, filename).then(function (data) {
            if (data !== null) {
                var file = new Blob([data], {
                    type: 'application/stl'
                });
                var fileURL = URL.createObjectURL(file);
                var link = document.createElement('a');
                link.href = fileURL;
                link.target = '_blank';
                link.download = filename;
                document.body.appendChild(link);
                link.click();
                document.body.removeChild(link);
            }
            //window.URL.revokeObjectURL(url);
            defer.resolve(data);
        });
    }

來自 repository.js

function getFile(id, hash, fileName) {
            var params = {
                'Id': id,
                'Hash': hash,
                'FileName': fileName
            }
            var url = 'https://' + window.location.host + '/api/' + 'ThreeShape' + '/' + 'getFileAsync';
            return $http.post(url, params, { responseType: 'blob' }).then(function (data) {
                if (data.data.Content.indexOf("validation failed")!==-1) {
                    logError(data.data.Content);
                    return null;
                }
                return data.data;
            });
        }

c#后端代碼中:

public async Task<string> getFileAsyncInternal(GetFile request)
{
    var response = new GetThreeShapeCasesResponse();
    IList<GetOneThreeShapeCaseResult> tempCaseList = new List<GetOneThreeShapeCaseResult>();
    IRestResponse restResponse;
    var retryCount = 0;
    HttpStatusCode statusCode;
    int numericStatusCode;
    var requestUrl = "";
    InitializeThreeShapeClient();
    var restRequest = new RestRequest(Method.GET);
    if (request.Hash != null)
    {

        requestUrl = threeShapeServerLocation + "api/cases/"+ request.Id+"/attachments/"+ request.Hash;

    }
    ThreeShapeAPIClient.BaseUrl = new Uri(requestUrl);
    var getTokenOperation = await retreive3ShapeBearerTokenInternal();
    var myToken = getTokenOperation.TokenValue;
    var tokenString = "Bearer " + myToken;
    restRequest.AddHeader("Authorization", tokenString);
    restResponse = ThreeShapeAPIClient.Execute(restRequest);
    numericStatusCode = (int)restResponse.StatusCode;
    System.Web.HttpResponse httpresponse = System.Web.HttpContext.Current.Response; ;
    if (numericStatusCode == 200)
    {
        var strResult = restResponse.Content; 
        //return strResult;
        string fileName = request.FileName;
        httpresponse.ClearContent();
        httpresponse.Clear();
        byte[] buffer = new byte[restResponse.Content.Length];
        System.Net.Mime.ContentDisposition cd = new System.Net.Mime.ContentDisposition
        {
            FileName = fileName,
            Inline = true  // false = prompt the user for downloading;  true = browser to try to show the file inline
        };
        httpresponse.Headers.Add("Content-Disposition", "attachment;filename="+request.FileName+ ";filename*=UTF-8''" + request.FileName);
        httpresponse.Headers.Add("Content-Length",Convert.ToString(restResponse.Content.Length));
        httpresponse.Headers.Add("Contenty-Type", ((RestSharp.RestResponseBase)restResponse).ContentType);
        httpresponse.Output.Write(restResponse.Content);
        return restResponse.Content;
    }
    else if (retryCount == 0 && numericStatusCode == 401)
    {
        response.DidError = true;
        response.ErrorMessage = restResponse.Content;
    }
    return restResponse.Content;
}

我一直在努力打開下載的文件。 非常感謝任何形式的幫助。 我在內容 object 中得到的回應是

我會首先比較干凈副本和損壞的下載副本的文件內容以尋找線索。 下載的副本真的損壞了還是實際上是空的? 您在損壞的副本中看到模式了嗎? 祝你好運!

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM