It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center
                            
                        
                    
                
                                7年前关闭。
            
                    
我想连接到Solaris计算机并从Unix环境中读取日志文件,以便可以从日志中解析数据并创建报告。为了进行解析,我想到了使用VC ++。

我正在使用Visual Studio 2012,因为用户不具备在Unix环境(控制台)中工作的知识,并且GUI不可用。

如何使用VC ++程序连接到Unix环境?

最佳答案

当然,最好获得在Solaris机器上运行的Perl脚本来解析日志并将文件本地转储到Solaris机器。恕我直言,用Perl或Python编写这类“日志抓取工具”要容易得多。

然后,您可以安排通过Samba以只读方式共享Solaris机器上的目录,这样,您的所有Windows C ++程序所需要做的就是检查共享文件是否存在并打开它。这里只需要本地文件打开功能。

如果无法共享,那么您将受到网络团队允许您使用的任何内容的限制。

关于c++ - Microsoft Visual C++与Unix环境的连接,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10278488/

10-11 22:42