Questions tagged as 'consola'

1
answer

How to delete characters in python console? [closed]

Something like in java that I think is with a \b but in python     
asked by 30.10.2016 / 19:24
3
answers

Pass arguments to executable.exe c #

I created an application in c # very simple. static void Main(string[] args) { Console.WriteLine("Cantidad de argumentos: {0}", args.Length); foreach (string argumento in args) { Console.WriteLine("Argumentos: {0}", argumen...
asked by 20.09.2016 / 07:06
1
answer

Written line is too long - CMD

I try to make the following command in CMD to save% PATH% with line breaks in a text file. "@echo. %PATH:;= & @echo.%" > path.txt With this I try to do it with line breaks to then make an findstr from that file. But I get error The w...
asked by 29.09.2016 / 23:40
1
answer

Turn MySQL server on and off

I want to turn on and off the mysql server through java, this is just an exercise, I used the org.apache.common.exec package to run the command, the only problem is that I can only do it through the daemon with sudo launchctl unload -F /Librar...
asked by 01.08.2016 / 04:35
0
answers

How should I make a console.log to see registry errors to the database?

Hello, I am creating an application and when the user registration is done, the data does not reach the database. How and where should I do the console.log or debugger to see the errors? I know that doing console.log or debugger could see the er...
asked by 22.05.2018 / 12:42
1
answer

Doubt Threads in C #

Good morning I am studying C # and I have found the need to make my program pause, until x seconds pass or until the same user generates an event. I tried to transfer my knowledge of java threads to C # but it does not work correctly. My questio...
asked by 03.11.2018 / 09:43
3
answers

Manipulate files with Batch

I want to make a BackUp of a folder with all its files, called "DATA", and make a Backup, every time that it runs in a .BAT file, it is backed up.     
asked by 26.05.2017 / 22:38
1
answer

Running a file formatted in UTF-8 with javac

I tried to run a .java file that I did in Eclipse , and I missed a lot of errors. The file I programmed is encoded in UTF-8. When executing this command in the CMD of Windows : javac C:\ProgramasJava\Main.java The output in console...
asked by 09.10.2017 / 14:25
2
answers

Determine how many vowels a chain has in java [closed]

Implement, using the String class, an application that counts the number of vowels in a text. The algorithm that I have designed is the following: However, when I try to code the algorithm, everything goes fine until I try to buy wit...
asked by 10.02.2018 / 09:42
1
answer

Chrome console?

I researched a bit and I found that there is a console in google chrome thanks to a little trick in an internet game that consists of the following MC.showLevelUp(1,10,100) which I think is a function. How can I see more functions (if...
asked by 25.12.2016 / 17:07