由买买提看人间百态

topics

全部话题 - 话题: filepaths
首页 上页 1 2 (共2页)
A*********u
发帖数: 8976
1
总体来说非常非常好
剧情场景音乐都很棒
除了男一号,表演也都不错

【 以下文字转载自 Movie 讨论区 】
发信人: LIEDV (LIEDV), 信区: Movie
标 题: 原创DV《不如归去》(更新youtube)
发信站: BBS 未名空间站 (Sun Feb 20 18:56:13 2011, 美东)
L.I.E. Studio原创DV《不如归去》正式上线。炒作了这么久,这把玩真的啦!既然出
货了,我们也就不多废话了。好不好,要您说了算。
现阶段我们提供在线观看、网盘、ftp跟BT下载方式,下载版本为480p中英双语字幕版
,单文件632M,片长100分钟。
《不如归去》在线观看
youtube
http://www.youtube.com/watch?v=MN2WrA8TGjE
建议选择480p设置以达到最好效果。同时请注意本片含外挂中英双语字幕,可以通过窗
口右下角标识“CC”的按钮打开或者关闭。
优酷
http://v.youku.com/v_show/id_XMjQ1NDM2MjI4.html
56
http://www.56.com/u13/v_NTg0Nzg... 阅读全帖
s******y
发帖数: 522
2
来自主题: Apple版 - Applescript 怎么传递文件路径
我自己做了个图片浏览器,命令行下正常
运行方式是 java -jar myPackage.jar [filePath | folderPath]
我想把它加到Mac Automator里的, 这样就可以右键直接运行,
可我不知道shell script该怎么传递文件路径
现在这样写成这样
java -jar myPackage.jar "$f"
能打开浏览器但是不能显示图片,应该是文件路径传递有问题
请板上高手教我
w*t
发帖数: 9
3
来自主题: Database版 - Help needed in SQL
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
来自主题: Database版 - 面试中的一道sql的题目。
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
来自主题: Java版 - 新手问一个多线程的问题
我要实现一个简单的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
来自主题: Java版 - 新手问一个多线程的问题
多谢各位耐心指点。我刚刚接触多线程,看了一堆书,实践的还不多。
对于我这个例子,各位前辈看看我说的对不对:
首先,每当有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
来自主题: Java版 - 新手问一个多线程的问题
哦,你的意思是说这样的么,,比如那个 methodA
public int methodsA(String filePath){
syncronized(this){
//file manipulation here...
}
}
m*****y
发帖数: 224
9
来自主题: Java版 - 新手问一个多线程的问题
能不能问一下,这种情况为什么一定要class lock?
你的意思是说methodA应该写成
public static syncronized int MethodA(String filePath){
//file operations..
}
这样的吧?
u****s
发帖数: 2186
10
来自主题: Java版 - 编程新人求助—死循环了
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);
o**2
发帖数: 168
11
来自主题: Java版 - A rookie question on Java GUI
It is available through maven central repository.
http://search.maven.org/remotecontent?filepath=com/fastmessenge
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"
能打开浏览器但是不能显示图片,应该是文件路径传递有问题
请板上高手教我
o**2
发帖数: 168
14
来自主题: Programming版 - FMP 已经在 maven central repository 里了
用maven的同学可以直接使用了
http://search.maven.org/remotecontent?filepath=com/fastmessenge
com.fastmessenger
fmp
2.0.0
d********g
发帖数: 10550
15
来自主题: Programming版 - 看C码工写Python真是捉急
算了吧,你自己先得学艺精。我都提到了其中一个答案是“带点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
来自主题: Programming版 - CIH源代码
究竟难在哪里?
; 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
来自主题: Quant版 - a simple vba programming question
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
来自主题: Statistics版 - 问一个不产生SAS Log的命令
可以打印到word文档里。
这样子即能保存Log方便debug,又不用每次清空。
filename mylog "&filepath log.rtf";
proc printto new log=mylog;
run;
g**a
发帖数: 2129
19
来自主题: Statistics版 - How to work on this dataset?
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
,(
a********8
发帖数: 141
20
来自主题: sysop版 - 请教:如何贴CNTV视频?
我会贴Youtube视频和优酷视频,但不知怎么贴CNTV视频,特来讨教。比如这个CNTV视
频提供的embed code如下: