如何将excel文件转换为文本文件?

发布于 2024-11-19 04:52:08 字数 41 浏览 3 评论 0原文

谁能帮我如何将txt文件转换为xls文件?任何帮助将不胜感激。谢谢!

Can anyone help me how to convert txt file to xls file? Any help will be highly appreciated. Thanks!

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

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

发布评论

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

评论(1

裸钻 2024-11-26 04:52:08

在命令行上将 XLS 转换为 CSV

我猜上面的工作相反。

如果您想在 VB6 中处理数据本身(我假设您这样做是因为标签),请参阅从 此线程

Dim cnn As New ADODB.Connection
Dim rs As New ADODB.Recordset

cnn.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _
          "Data Source=" & "C:\Documents and Settings\...\My Documents\My Database\Text;" & _
            "Extended Properties=""Text;HDR=No;"""

rs.Open "Select * from TextFile.csv", cnn, adOpenStatic, adLockReadOnly, adCmdText

'...
'...
'...

rs.Close
cnn.Close
Set cnn = Nothing

CSV 是 TXT 类型的特殊情况,其中字段以逗号分隔。您应该能够指定任何字符(包括空格或制表符)作为分隔符。

Convert XLS to CSV on command line

I guess the above works in reverse.

If you want to work with the data itself in VB6 (I assume you do because of the tag), see this code pinched from this thread:

Dim cnn As New ADODB.Connection
Dim rs As New ADODB.Recordset

cnn.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _
          "Data Source=" & "C:\Documents and Settings\...\My Documents\My Database\Text;" & _
            "Extended Properties=""Text;HDR=No;"""

rs.Open "Select * from TextFile.csv", cnn, adOpenStatic, adLockReadOnly, adCmdText

'...
'...
'...

rs.Close
cnn.Close
Set cnn = Nothing

CSV is a special case of TXT type where fields are comma-separated. You should be able to nominate any character including space or tab as the delimiter.

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