接受变量,而不是直接文件路径?

发布于 2024-09-29 20:54:25 字数 176 浏览 5 评论 0原文

我不确定实际上如何问这个问题...

参考:http://qif.codeplex.com/

这个 API 接受文件的路径,我可以让它接受变量吗?文件的二进制文件或文件的字符串内容?

I'm not sure how to ask this question actually...

REF: http://qif.codeplex.com/

This API takes in the path of a file, can I have it take in a variable instead? binary of the file or string content of the file?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

扭转时空 2024-10-06 20:54:25

不是直接的,但是有一个需要 StreamReaderImportFile 重载,因此您可以执行类似的操作:

  • 如果您将内容作为字节数组:

    byte[] contentBytes = ...
    QifDom qifDom;
    使用 (Stream 流 = new MemoryStream(contentBytes))
    使用 (StreamReader reader = new StreamReader(stream))
    {
        qifDom = QifDom.ImportFile();
    }
    
  • 如果内容为字符串:

    字符串内容 = ...
    byte[] contentBytes = Encoding.UTF8.GetBytes(content);
    QifDom qifDom;
    使用 (Stream 流 = new MemoryStream(contentBytes))
    使用 (StreamReader reader = new StreamReader(stream))
    {
        qifDom = QifDom.ImportFile();
    }
    

顺便说一下,糟糕的 API 设计...参数应该是 TextReader,而不是 StreamReader >,所以我们可以使用 StringReader 而不是将字符串转换为字节)

另外,请注意主页上的示例不正确(没有 QifDom.Import财产)

Not directly, but there is an overload of ImportFile that takes a StreamReader, so you can do something like that:

  • If you have the content as a byte array:

    byte[] contentBytes = ...
    QifDom qifDom;
    using (Stream stream = new MemoryStream(contentBytes))
    using (StreamReader reader = new StreamReader(stream))
    {
        qifDom = QifDom.ImportFile();
    }
    
  • If you have the content as a string:

    string content = ...
    byte[] contentBytes = Encoding.UTF8.GetBytes(content);
    QifDom qifDom;
    using (Stream stream = new MemoryStream(contentBytes))
    using (StreamReader reader = new StreamReader(stream))
    {
        qifDom = QifDom.ImportFile();
    }
    

(Bad API design, by the way... the parameter should have been TextReader, not StreamReader, so we could have used a StringReader rather than converting the string to bytes)

Also, note that the example on the home page is incorrect (there is no QifDom.Import property)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文