|
s******y 发帖数: 522 | 2 我自己做了个图片浏览器,命令行下正常
运行方式是 java -jar myPackage.jar [filePath | folderPath]
我想把它加到Mac Automator里的, 这样就可以右键直接运行,
可我不知道shell script该怎么传递文件路径
现在这样写成这样
java -jar myPackage.jar "$f"
能打开浏览器但是不能显示图片,应该是文件路径传递有问题
请板上高手教我 |
|
w*t 发帖数: 9 | 3 I want to insert a very file into a single cell in a table. Is there some
command in SQL that allows me to read in the file instead of input the values
by hand?
I tried
'source file-name'
'LOAD INTO TABLE table_name values ('/filepath') where column_name=condition'
But none worked.
Thanks for your help. I'm very new in SQL. |
|
m******t 发帖数: 6905 | 4 Hi all
I created a table and tried the solution above but it failed. who can help
--Creat Table and loading data by using bulk insert
Drop Table Test20140317
Create Table Test20140317
(SalesDate date,
Sales Decimal)
Bulk insert Test20140317
from 'C:\filepath\Book1.txt'
with
(ROWTERMINATOR = '\n',
firstrow = 2)
select * from Test20140317
--Here is the above solution, I used DateName function to display week days.
select
Month(SalesDate),
case when DATENAME(WEEKDAY,(SalesDate)) = 0 then ... 阅读全帖 |
|
m******t 发帖数: 2416 | 5 Or Runtime.exec("jar -tvf " + filepath) then
redirect the output to http output. ;-) |
|
m*****y 发帖数: 224 | 6 我要实现一个简单的web server,不需要考虑过载之类太复杂的情况,就假定有20个左
右的clients会同时连接上来。需要对于每一个进来的client都分一个thread去处理。
我做了一个clientHandler class
public class ClientHandler implements Runnable{
private Socket imcoming; //client
private BufferredReader reader; //read from client socket
private PrintWriter writer; //write to client socket
public void clientInterpreter(){
//处理client的各种请求
}
public void run(){
clientInterpreter();
}
private int methodA(String filePath){
File afile = new File(file |
|
m*****y 发帖数: 224 | 7 多谢各位耐心指点。我刚刚接触多线程,看了一堆书,实践的还不多。
对于我这个例子,各位前辈看看我说的对不对:
首先,每当有client要连接我的server的时候,server都会创建一个新的
clientHandler 的Object,然后交给一个thread去运行。假如现在有5个client连进来
,就会有5个clientHandler objects被创建出来,所以clientHandler的那三个private
members: reader, writer, connection就没有concurrency的问题。
然而,这5个clientHandler对本地文件进行操作的话,就会出现concurrency的情况,
要避免出现问题,就要给那个private int methodA(String filePath)方法加上
synchronized关键字。
另外还有一句题外话,我这么设计是不是不太合理?是不是应该内存中就只出现一个
clientHandler object去处理这5个client连接?其它的要用到thread pool的情况,我
也在书本上看到了,现在暂时还没遇到 |
|
m*****y 发帖数: 224 | 8 哦,你的意思是说这样的么,,比如那个 methodA
public int methodsA(String filePath){
syncronized(this){
//file manipulation here...
}
} |
|
m*****y 发帖数: 224 | 9 能不能问一下,这种情况为什么一定要class lock?
你的意思是说methodA应该写成
public static syncronized int MethodA(String filePath){
//file operations..
}
这样的吧? |
|
u****s 发帖数: 2186 | 10 in addition to the change suggested above, you may want to add File.
separator into the full file path
tester = new File(filePath + File.separator + fileName); |
|
|
s******y 发帖数: 522 | 12 【 以下文字转载自 Apple 讨论区 】
发信人: superray (ray), 信区: Apple
标 题: Applescript 怎么传递文件路径
发信站: BBS 未名空间站 (Sat Jul 11 11:59:40 2015, 美东)
我自己做了个图片浏览器,命令行下正常
运行方式是 java -jar myPackage.jar [filePath | folderPath]
我想把它加到Mac Automator里的, 这样就可以右键直接运行,
可我不知道shell script该怎么传递文件路径
现在这样写成这样
java -jar myPackage.jar "$f"
能打开浏览器但是不能显示图片,应该是文件路径传递有问题
请板上高手教我 |
|
s******y 发帖数: 522 | 13 【 以下文字转载自 Apple 讨论区 】
发信人: superray (ray), 信区: Apple
标 题: Applescript 怎么传递文件路径
发信站: BBS 未名空间站 (Sat Jul 11 11:59:40 2015, 美东)
我自己做了个图片浏览器,命令行下正常
运行方式是 java -jar myPackage.jar [filePath | folderPath]
我想把它加到Mac Automator里的, 这样就可以右键直接运行,
可我不知道shell script该怎么传递文件路径
现在这样写成这样
java -jar myPackage.jar "$f"
能打开浏览器但是不能显示图片,应该是文件路径传递有问题
请板上高手教我 |
|
|
d********g 发帖数: 10550 | 15 算了吧,你自己先得学艺精。我都提到了其中一个答案是“带点C遗风的Pythonic写法
”:
filepath = '{0}/{1}{2}'.format(path, ascii_fname, nonascii and '*' or '')
这个写法:
nonascii and '*' or ''
看看和你自己问的C问题是不是有点类似?你理解了吗?
发信人: finalguy (o(∩∩)o), 信区: Programming
标 题: 神奇的逻辑关系
发信站: BBS 未名空间站 (Sat May 18 21:41:01 2013, 美东)
今天读一段code,不是很明白一个地方。具体就是
if (A && B || C) {
}
这样的逻辑写法我从来不用,看了也不是很懂。求高手指点,究竟在A,B,C那几个为
真的情况下会进入这个block? |
|
b**********h 发帖数: 419 | 16 究竟难在哪里?
; Win Cih Source Code
;I m not the dissembler of the code and really I don't know ;who is the
writer or dissembler . Compile or run this program ;at your own risk. Also I
m not giving any guarantee of running ;the program !!!.
;****************************************************************************
; * The Virus Program Information *
;****************************************************************************
; * *
; * Designer : CIH Source : TTIT of TATUNG in Taiwan... 阅读全帖 |
|
m********l 发帖数: 4394 | 17 a lot.
is quant.xlsx in the same filepath?
did you try C:\quant.xlsx?
make sure you know what quant variable contains.
a |
|
f****r 发帖数: 1140 | 18 可以打印到word文档里。
这样子即能保存Log方便debug,又不用每次清空。
filename mylog "&filepath log.rtf";
proc printto new log=mylog;
run; |
|
g**a 发帖数: 2129 | 19 data one;
infile 'filepath' LRECL=150000;
input @'(''' Var1 10. @@;
run;
proc print data=one;
run;
Assuming the length of the number is 10
change the record length accordingly.
the
,( |
|
|