代码搜索:Notepad

找到约 3,424 项符合「Notepad」的源代码

代码结果 3,424
www.eeworm.com/read/371958/9528702

asm procmgmt.asm

.PB main .PV filename1 -16 .PV filename2 -32 .PV buffer -512 #allocate local storage PUSHQ $FP MOV $FP,$SP LQI $R7,512 SUB $SP,$SP,$R7 #populate filename1 = notepad LAI $R10,$FP,fi
www.eeworm.com/read/168666/9902534

java excute.java

package src; public class Excute { public static void main(String[] args){ Runtime rn = Runtime.getRuntime(); Process p = null; try{ p = rn.exec("notepad"); }catch(Exception e){
www.eeworm.com/read/363352/9957729

java demo.java

//用java调用windows系统的exe文件,比如notepad,calc之类: public class Demo { public static void main(String args[]) { Runtime rn=Runtime.getRuntime(); Process p=null; tr
www.eeworm.com/read/280199/10348063

txt 调用记事本.txt

1. 调用外部程序: 启动记事本: using System.Diagnostics; private System.Diagnostics.Process process; process=new Process(); process.StartInfo.FileName="notep
www.eeworm.com/read/279872/10381715

dof server.dof

[FileVersion] Version=7.0 [Compiler] A=8 B=0 C=1 D=1 E=0 F=0 G=1 H=1 I=1 J=0 K=0 L=1 M=0 N=1 O=1 P=1 Q=0 R=0 S=0 T=0 U=0 V=1 W=0 X=1 Y=1 Z=1 ShowHints=1 ShowWarnings=1 U
www.eeworm.com/read/161042/10459300

java javafile.java

package notepad; public class JavaFile { StringBuffer string = new StringBuffer(); public void PutString(char a) { if( a != ' ') { string.insert(string.length(), a); }
www.eeworm.com/read/276301/10750398

java runtimedemo.java

public class RuntimeDemo { public static void main(String args[]) { Process p=null; try { p=Runtime.getRuntime().exec("notepad.exe RuntimeDemo.java"); Thread.sleep(5000); }
www.eeworm.com/read/349896/10792495

cpp stdafx.cpp

// stdafx.cpp : source file that includes just the standard includes // NotePad.pch will be the pre-compiled header // stdafx.obj will contain the pre-compiled type information #include "stdafx.h
www.eeworm.com/read/271684/10984922

cpp main.cpp

#include #include "simulate.h" void main() { std::ofstream fout("simulation.txt");//将输出流定向到文件 Simulate(fout, 540);//模拟银行业务 cout
www.eeworm.com/read/131205/6955839

cpp launch1.cpp

#include #include #include #include int main(void) { STARTUPINFO si; PROCESS_INFORMATION pi; // fill out the STARTUPINFO structure w