inputstream tag

12 questions


1 answers
76 views
0
End and content of string received via fgets

The fgets() function stores the results in the string and adds a null character (\0) to the end of the string.That's what IBM explains.I'm going to compare the string I received through the fgets() fu...

1 years ago

1 answers
133 views
0
The actual return value of the Python input() function enters strangely.

txt=[Ghost vegetable\n, i\'m Groot\n]Suppose you enter line=input() #Ghost vegetables\n.if(line==txt[0]): print(This string is the same sentence.)I thought that if you type in input(), the görme\n, it...

1 years ago

2 answers
122 views
0
strlen and string

I wonder why David921 read from the file through the strlen function has a length of 9.When reading the same David921 length through gets, the length is 8 so I wonder why this difference occurs.


1 answers
109 views
0
After initializing the c language string, I wrote down the tap in more detail when I input/output the rest of the file.

int main(void){int c, i;//Implement as a link list FILE *cities, *members, *reser;// departure city, member list, reservation list char ID[20];char PW[20];char *ID_B;char *PW_B; char *NEW_ID; char *NE...

1 years ago

1 answers
100 views
0
How do I change InputStream to String?

I want to convert the java.io.InputStream object to String. If InputStream contains textual data, I think we can change it to StringWhat do I do? p.s. Please let me know the simplest way to do it in t...


1 answers
62 views
0
Can you convert the String object of Java into InputStream and save it?

String exampleString = example;If I have a code like this, how do I put it in InputStream??


1 answers
124 views
0
How to replace InputStream with BufferedReader

I wrote InputStream to read text line by line from Android Asset Folder.If I use Buffered Reader, I can use readLine(), so I want to change InputStream to Buffered ReaderWhat should I do?InputStream i...


1 answers
121 views
0
Can I change InputStream to Byte array?

Can I change InputStream to Byte array?

1 years ago

2 answers
135 views
0
I have a question for JAVA.

package Ex;import java.io.*;public class fre { public static void main(String[] args) throws IOException { FileInputStream fi = null; InputStreamReader in = null;// fi = newFileInputStream (fileEx.t...


1 answers
107 views
0
Access by line when inputting and outputting files

As far as I know, if you use fseek, it moves in bytes, but can't you read it in rows?Currently, we are processing it arbitrarily through fgets.I'm saving five lines of information.

1 years ago
- 1 - »

© 2024 OneMinuteCode. All rights reserved.