android 可以读写其他程序的文件吗

android 可以读写其他程序的文件吗,第1张

文件

1、通过File获取文件

2、打开输仔简隐入流,读取文件

写文件:

1、创建文件

2、打开输出流,写入文件内容

示例:

1

2

3

4

5

6

7

8

9

10

11

12

13

读文件:

String content = ""//文件内容字符串

//通过路径/sdcard/foo.txt打开文件

File file = new File("/sdcard/foo.txt")

try {

InputStream instream = new FileInputStream(file)//读取输入流

InputStreamReader inputreader = new InputStreamReader(instream)//设置流读取方式

BufferedReader buffreader = new BufferedReader(inputreader)

while (( line = buffreader.readLine()) != null) {

content += line + "\n"//读取的文件内容

}

}catch(Exception ex){

}

1

2

3

4

5

6

7

8

9

10

11

12

写文件:

File file = new File("/sdcard/foo.txt")//

if(!file.exists())

file.createNewFile()//如果文件不存在,创建foo.txt

try {

OutputStream outstream = new FileOutputStream(file)//设置输出流

OutputStreamWriter out = new OutputStreamWriter(outstream)//设置内咐悉容输出方式

out.write("文字内容"念厅)//输出内容到文件中

out.close()

} catch (java.io.IOException e) {

e.printStackTrace()

}

可以用汪山型API函数唯粗FindWondow, FindWondow是这困猜样工作的,如果找到特定字符串的窗口标题,那么返回该窗口的句柄,否则返回NULL

举个例子:

#include<stdio.h>

#include <windows.h>

int main()

{

HWND hw = FindWindow(NULL, L"计算器")

if (hw)

printf("有")

return 0

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/12548788.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-26
下一篇 2023-05-26

发表评论

登录后才能评论

评论列表(0条)

保存