简体   繁体   中英

CLion standard input while debugging

What I'm trying to do is basically:

./myProgram < myData.txt

While I'm debugging with CLion IDE. I just can't find the option to do so.

A similar question - but product-specific to MSVS

I had the same problem and it seems that CLion is not handling standard inputs yet.

I got around this problem by changing the input stream before running my program.

As an example if you want to input a file stream inside your stdin you can write in your main:

std::ifstream in("ABSOLUTE_PATH_TO_YOUR_FILE");
std::cin.rdbuf(in.rdbuf());

Then you can find a way to toggle this stream change when you want. Note that for files you will need to provide absolute path since the application is run from a different directory than the current one.

I hope this can help until CLion provides a real solution.

Assuming your input file is myData.txt , you can reopen/reuse the stdin stream using freopen

freopen("myData.txt","r",stdin);

if you want to do the same with your output:

freopen("myOutput.txt","w",stdout);

this will work for std::cin, printf, etc...

You can find more information about this here: http://www.cplusplus.com/reference/cstdio/freopen/


By the way, there is already a feature request for this. If you are interested, you can vote here so it gets prioritized: https://youtrack.jetbrains.com/issue/CPP-3153

As of CLion 2020.1 this feature is built in :

Input redirection

If you need to redirect input from a file to the stdin of your application, you can now do that. Use a new field in the configuration called Redirect input from . Enter:

  • A relative path (CLion will prepend with the Working directory path).
  • An absolute path (will be remapped for remote configurations).
  • Or macros (like FilePrompt). 在此处输入图片说明

Still Clion don't have the feature like pycharm where we can give input in terminal while debugging the code.

But it has an option to give input through a .txt file while debugging.

Image of debug setting window

Click the setting icon in the debug console (on upper left corner) to open the setting of debugging. Then check the "Redirect input from" box and select the input file path and click "OK".

Here you go!

Now you can give input from the text file while debugging the code.

For me, CLion creates the executable in a file called 'cmake-build-debug'. Check out my file structure in the pic.

可执行文件相对于文本文件

Then, I just opened up my terminal and went to the directory containing the executable and used this command to pipe in the text file:

./FirstProject < ../hw1.txt

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM