创建用于在 Excel 中导入文本文件的脚本的最佳解决方案是什么?

发布于 2024-10-19 14:07:41 字数 232 浏览 2 评论 0原文

我想知道以任何语言创建脚本以在 Excel 中导入文本文件的最佳方法是什么。 我曾经用java编写代码,但我有兴趣学习任何其他语言。

目标是在 excel 中导入 txt 文件,而无需打开 excel,例如使用 java 或 vb...

我有一个文件夹,每天都会下载一个文本文件,我想将其导入 excel 中,并且我可以检查图形。

我尝试用java导入它,但似乎不可能。

感谢您的帮助。

I want to know what is the best way to create a script in any language for importing a text file in excel.
I use to code in java but I'm interrested to learn any other language.

The goal is to import a txt file in excel without opening excel for example using java or vb...

I have a folder where everyday a text file is downloaded and I want to import it in excel and the I could check for graphs.

I tried to import it in java, but it seems it's not possible.

Thank you for your help.

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

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

发布评论

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

评论(2

我为君王 2024-10-26 14:07:41

我认为最好的方法是将文本文件转换为 .CSV文件(逗号分隔值)。

使用任何你喜欢的语言,但我建议使用脚本语言,最好是 Python。

编辑:忘记之前提到 CSV 文件默认在 Excel 中打开。

I think the best way would be to convert your text file into a .CSV file (Comma Separated Values).

Use whatever language you like, but I would suggest a scripting language like preferably Python.

EDIT: Forgot to mention earlier that CSV files open up in excel by default.

摇划花蜜的午后 2024-10-26 14:07:41

这个聚会只晚了10年,但我只是在futureland上搜索这个问题。我知道您说“不打开 Excel”,但除非您编写一个检查文件的脚本并使用 CRON 作业或其他内容进行安排,否则您必须执行一些操作来转换文件。

当我想要 Excel 输出时,我已经在 VBA 中完成了很多次,因为打开文件、读取它并根据需要将其放入 Excel 中非常简单,然后您就可以拥有 Excel 本机的所有功能(假设您想要制作图表)。我已经制作了带有按钮的不错的用户界面,因此用户只需打开文件并单击按钮即可导入文本文件。

除此之外,Python 和 Pandas 工作得很好并且非常灵活;您只需要有一种方法来执行脚本,可以手动执行,也可以按计划执行。

Only 10 years late to this party, but I just searched for this questions here in futureland. I know you said "without opening Excel," but unless you make a script that checks for a file and is scheduled with a CRON job or something, you have to do something to convert the file.

I've done it in VBA many times when I wanted Excel output, as it's pretty straightforward to open a file, read it, and put it in Excel however you want, and then you have all the functionality of Excel natively (say if you wanted to make graphs). I've made decent UIs with buttons so the user only has to open the file and click a button to import a text file.

Apart from that, Python and Pandas works pretty well and is pretty flexible; you just have to have a way to execute the script, either manually or on some schedule.

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