我想在特定时刻捕获命令提示符(cmd窗口)中显示的de信息并将其发送到文本文件。
我有一个C / C ++应用程序,由这样的批处理脚本启动:
c:\myProgramInC.exe
echo "Ending with error"
PAUSE
myProgramInC.exe一直在运行(带有无限循环),所以如果我的脚本到达echo命令,则意味着我的应用程序以异常终止结束。
我想得到的是在脚本结束执行之前的前几行,因为我的myProgramInC.exe总是打印有关正在发生的事情的信息,看看发生错误时发生了什么是非常有用的。像这样的东西
c:\myProgramInC.exe
**** Execution of process to get te previous N lines in the command prompt ****
echo "Ending with error"
PAUSE
我知道cmd窗口有一个缓冲区,我一直在考虑从这样的缓冲区中捕获所有这些数据。是否可以将此信息作为文本存储在文件中?
我一直在尝试更专业的东西,以便使用ProcDump转储内存,但由于我同时运行各种myProgramInC.exe(每个存储在不同的位置)我只是得到消息“多个进程匹配指定的名称。”其他选项对我来说没用,因为我的应用程序没有反应迟钝,只是结束了。
有什么想法吗?
答案 0 :(得分:2)
快速技巧是在for /f
的上下文中执行,你甚至不需要批处理文件,你可以直接从cmd行执行:
for /f "tokens=*" %F in ('c:\myProgramInC.exe') do @echo %F >>myPrograminC.log
这将禁止所有输出,直到程序异常终止,然后才会将所有消息写入文件。如果你的应用程序不经常写日志消息(或快速失败:-))它应该工作。我测试了10 000行。
下面的批处理代码基于相同的想法 - 请注意,即使它只写了最后5行,它仍然需要扫描所有这些所以我不确定它&#39 ; s比上面的1个衬垫更好。
@echo off
setlocal
for /f "tokens=*" %%P in ('c:\myProgramInC.exe') do (
for /L %%C in (4,-1,1) do (
set /A next=%%C+1
call set line_%%next%%=%%line_%%C%%
)
set line_1=%%P
)
echo program ended abnormally! %date% %time%
for /L %%C in (5,-1,1) do call echo %%line_%%C%%
答案 1 :(得分:1)
您可以使用ReadConsoleOutputCharacter函数轻松地在C中完成此操作。
答案 2 :(得分:1)
好的,可能有一种更优雅的方式来做到这一点,但假设你有PowerShell,这将有效。
创建名为Get-ConsoleAsText.ps1
的PowerShell脚本文件,其中包含以下脚本。 注意,我没有创建这个脚本。我在Windows PowerShell Blog - Capture console screen找到了它。
#################################################################################################################
# Get-ConsoleAsText.ps1
#
# The script captures console screen buffer up to the current cursor position and returns it in plain text format.
#
# Returns: ASCII-encoded string.
#
# Example:
#
# $textFileName = "$env:temp\ConsoleBuffer.txt"
# .\Get-ConsoleAsText | out-file $textFileName -encoding ascii
# $null = [System.Diagnostics.Process]::Start("$textFileName")
#
# Check the host name and exit if the host is not the Windows PowerShell console host.
if ($host.Name -ne 'ConsoleHost')
{
write-host -ForegroundColor Red "This script runs only in the console host. You cannot run this script in $($host.Name)."
exit -1
}
# Initialize string builder.
$textBuilder = new-object system.text.stringbuilder
# Grab the console screen buffer contents using the Host console API.
$bufferWidth = $host.ui.rawui.BufferSize.Width
$bufferHeight = $host.ui.rawui.CursorPosition.Y
$rec = new-object System.Management.Automation.Host.Rectangle 0, 0, ($bufferWidth), $bufferHeight
$buffer = $host.ui.rawui.GetBufferContents($rec)
# Iterate through the lines in the console buffer.
for($i = 0; $i -lt $bufferHeight; $i++)
{
for($j = 0; $j -lt $bufferWidth; $j++)
{
$cell = $buffer[$i, $j]
$null = $textBuilder.Append($cell.Character)
}
$null = $textBuilder.Append("`r`n")
}
return $textBuilder.ToString()
如果您自己调用PowerShell脚本,它将读取控制台缓冲区并将其写回屏幕
PowerShell -noprofile -sta -command "C:\Scripts\Get-ConsoleAsText.ps1"
您也可以像这样调用它来将内容捕获到文件中:
PowerShell -noprofile -sta -command "C:\Scripts\Get-ConsoleAsText.ps1 | Out-File MyOutput.txt -encoding ascii"
如果要处理它并在批处理文件中执行某些操作,可以使用FOR
命令调用它并处理输出。我会把这个练习留给你。
因此,例如,您的批处理文件看起来像这样将控制台输出捕获到文件:
c:\myProgramInC.exe
echo "Ending with error"
PowerShell -noprofile -sta -command "C:\Scripts\Get-ConsoleAsText.ps1 | Out-File MyOutput.txt -encoding ascii"
PAUSE
答案 3 :(得分:1)
最后,这就是我的工作原理。遵循哈里约翰斯顿的建议 我搜索了ReadConsoleOutputCharacter函数的工作方式,然后我运行了下一个程序。
#include "stdafx.h"
#include <iostream>
#include <windows.h>
#include <fstream>
#define BUFFER_SIZE 50000
int main(){
HANDLE hOut;
COORD location = {0, 0};
char *buffer=NULL;
DWORD numberRead;
std::ofstream fileLog;
buffer = new TCHAR[BUFFER_SIZE];
if ( buffer==NULL )
{
printf("\nError: memory could not be allocated.\n");
return 1;
}
fileLog.open ("logger.txt");
if ( fileLog.fail() )
{
printf("\nError: file could not be opened.\n");
return 1;
}
hOut = GetStdHandle(STD_OUTPUT_HANDLE);
ReadConsoleOutputCharacter(hOut, buffer, BUFFER_SIZE, location, &numberRead);
fileLog << buffer ;
free(buffer);
fileLog.close();
return 0;
}
我在互联网上找到的大部分代码,现在我没有URL(除了它来自另一个论坛网站,我不知道是否可以引用竞争对手网站)但只需一次搜索在google中不难找到它。
我添加了写入文件的部分和内存分配。它在VS C ++ 6中完美运行。
这对我来说很好,虽然可能会更好。有两件事不是很好,比如
答案 4 :(得分:1)
如果要将任何错误消息报告回命令输出流,可以通过重定向操作符轻松地将其重定向到STDOUT(标准输出)和STDERR(标准错误)。取决于您是否要捕获输出和/或错误,取决于您。很可能,你正在寻找类似的东西:
“2”是重定向运算符的一部分,表示STDERR将被重定向并附加到文件名。
来源,示例和文档:
答案 5 :(得分:0)
minde中的一件事就是将命令行的输出重定向到文件:
c:\myProgramInC.exe >> myProgramInC.log
然后你可以看到日志文件中的内容。