从俄语语言的 EXCEL 中检索数据将其保存为 DBF 格式 (VFP)

发布于 2024-10-09 11:16:32 字数 119 浏览 1 评论 0原文

我想从 EXCEL 中检索俄语和俄语的数据。将其保存为 DBF 格式。我想要的是,在打印时我将使用相同的字体和字体。打印数据,但是当我从 XLS 、 CSV 或分隔文件追加到 DBF 文件中时,所有字符都变成 ???????

I want to retrieve DATA from EXCEL which is in Russian Language & saving it in DBF format . What I want that while printing I will use that same font & print data, But when I append from XLS , CSV or Delimited File into DBF file all Character becomes ???????

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

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

发布评论

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

评论(1

树深时见影 2024-10-16 11:16:32

Excel 文件很可能包含 Unicode 格式的数据。 DBF 格式本身并不支持 Unicode 字符,因此转换过程很可能会将它们更改为“最接近的”ANSI 字符,这对于许多/大多数字符来说将失败。为了保留字符,您可能需要编写自己的导出/导入实用程序来读取 Unicode 数据,然后将其写入 DBF,而无需进行 Unicode 到 ANSI 的转换。

The Excel file very likely has data in Unicode. The DBF format does not natively support Unicode characters, so the conversion process would very likely change them to the "closest" ANSI character, which will fail for many/most characters. In order to preserve the characters, you would likely need to write your own export/import utility to read the Unicode data and then write it to the DBF without a Unicode to ANSI conversion.

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