代码搜索:ReadFile
找到约 1,285 项符合「ReadFile」的源代码
代码结果 1,285
www.eeworm.com/read/115689/15004692
mac macro.mac
;读文件的宏
READFILE MACRO FILENAME
MOV AX,3D02H
LEA DX,FILENAME
INT 21H
JNC SAVE_FILE_HANDLE
LEA DX,OPEN_FILE_ERR_MSG
MOV AH,9
INT 21H
MOV
www.eeworm.com/read/237989/4619166
java readtrk.java
package net.aetherial.gis.database.readFile;
import java.io.*;
import net.aetherial.gis.database.access.Connect;
import java.sql.*;
public class ReadTrk { //这个类的作用是从经纬通里提取航迹数据
File f = null
www.eeworm.com/read/221370/4832826
~c nativelib.~c
#include
#include
//#include
#include "ReadFile.h"
//#include
//#include
#include
#include
//#include
www.eeworm.com/read/221370/4832830
c nativelib.c
#include
#include
//#include
#include "ReadFile.h"
//#include
//#include
#include
#include
//#include
www.eeworm.com/read/200523/5064764
py spring.py
#!/usr/bin/python
from curves import readfile
from types import *
import sys,math,os
sys.path.append(os.path.join(os.getcwd(),"build/lib.linux-i686-"+".".join([str(x) for x in sys.version_info[0:2]]
www.eeworm.com/read/165600/5480297
java fileio.java
package net.javapassion.jaguey.core;
import java.io.*;
//版本: JagueyBBS 1.1
//功能: 论坛文件输入输出流操作
//作者: 赵程佳
//时间: 2006-02-08 19:16:39
public class FileIO {
public static String readFile(St
www.eeworm.com/read/411228/2190597
py pmw_notebookr.py
from Tkinter import *
import Pmw
root = Tk()
root.option_readfile('optionDB')
root.title('Notebook R')
Pmw.initialise()
nb = Pmw.NoteBookR(root)
nb.add('p1', label='Page 1')
nb.add('p2', lab
www.eeworm.com/read/411228/2190745
py b_button.py
from Tkinter import *
root = Tk()
root.option_readfile('optionDB')
f1=Frame(root, width=300, height=140)
Button(f1, text="Button", bg='gray75').pack(side=LEFT, padx=40, pady=40)
f1.pack()
www.eeworm.com/read/411228/2190848
py b_entry.py
from Tkinter import *
root = Tk()
root.option_readfile('optionDB')
f1=Frame(root, width=300, height=140)
entry = Entry(f1, bg='gray75', width=5)
entry.pack(side=LEFT, padx=40, pady=40)
entry
www.eeworm.com/read/411228/2190850
py label.py
from Tkinter import *
root = Tk()
root.option_readfile('optionDB')
f1=Frame(root, width=300, height=140)
Label(f1, text="Label", bg='gray75').pack(side=LEFT, padx=40, pady=40)
f1.pack()
ro