谁知道南京有哪些用C++Builder的公司啊?

squiral 2003-03-31 12:02:31
谁知道南京有哪些用C++Builder的公司啊?好象只遇见了一个联创。
...全文
99 22 打赏 收藏 转发到动态 举报
写回复
用AI写文章
22 条回复
切换为时间正序
请发表友善的回复…
发表回复
squiral 2003-04-17
  • 打赏
  • 举报
回复
结了吧,谢谢捧场。
binbin 2003-04-09
  • 打赏
  • 举报
回复
俺也在南京哦.不过现在没工作.将来也干不成程序员了,俺30出头了.
hellobcb 2003-04-09
  • 打赏
  • 举报
回复
早听说南京工资低,各行各业都是,我毕业后是不会去的,不过现在听说搞什么软件园,你们学计算机的,搞程序的前景还是不错的!
killedkiss 2003-04-09
  • 打赏
  • 举报
回复
squiral(丢丢)
真的拉,郁闷
kamphkb 2003-04-09
  • 打赏
  • 举报
回复
#include "stdafx.h"

#using <mscorlib.dll>
#include <tchar.h>

using namespace System;
using namespace System::IO;
using namespace System::Text;

class Capsule
{
public:
static void En(System::String * input, System::String * output)
{
FileStream * fr ;
BinaryReader * r ;
FileStream * fw ;
BinaryWriter * w ;
unsigned char array __gc[] ;
try
{
Int32 byteLen = 0;
fr = OpenReadFile(input, & byteLen);
r = new BinaryReader(fr);
array = r->ReadBytes(byteLen);
CloseObject(r);
CloseObject(fr);
String * enStr = Convert::ToBase64String(array, 0, byteLen);
array = NULL;
fw = new FileStream(output, FileMode::Create, FileAccess::Write, FileShare::Read);
w = new BinaryWriter(fw);
w->Write(enStr);
CloseObject(w);
CloseObject(fw);
}
catch(Exception * e)
{
array = NULL;
CloseObject(w);
CloseObject(fw);
CloseObject(r);
CloseObject(fr);
throw e;
}
}

static void De(System::String * input, System::String * output)
{
FileStream * fr ;
BinaryReader * r ;
FileStream * fw ;
BinaryWriter * w ;
unsigned char array __gc [] ;
try
{
Int32 byteLen = 0;
fr = OpenReadFile(input, & byteLen);
r = new BinaryReader(fr);
String * enStr = r->ReadString();
CloseObject(r);
CloseObject(fr);
array = Convert::FromBase64String(enStr);
fw = new FileStream(output, FileMode::Create, FileAccess::Write, FileShare::Read);
w = new BinaryWriter(fw);
w->Write(array, 0, array->Length);
CloseObject(w);
CloseObject(fw);
}
catch(Exception * e)
{
array = NULL;
CloseObject(w);
CloseObject(fw);
CloseObject(r);
CloseObject(fr);
throw e;
}
}

static void CryptoEn(System::String * input, System::String * output, System::String * key)
{
}

static void CryptoDe(System::String * input, System::String * output, System::String * key)
{
}


private:
static FileStream * OpenReadFile(System::String * input, Int32 * byteFileLen)
{
FileStream * fr = new FileStream(input, FileMode::Open, FileAccess::Read, FileShare::Read);
Int64 byteLen64 = fr->Length;
if(byteLen64 > (Int64)Int32::MaxValue)
{
StringBuilder * str = new StringBuilder("File is Larger than Int32({0})", Int32::MaxValue);
throw new ApplicationException(str->ToString());
}
* byteFileLen = (Int32)byteLen64;
return fr;
}

static void CloseObject(IDisposable * obj)
{
try {
if(obj) { obj->Dispose(); obj = NULL; }
} catch(...) {}
}

private:
Capsule(void) { }
};


int _tmain(int, TCHAR*[], TCHAR*[])
{
Capsule::En("Capsule.rar", "wCapsule.txt");
Capsule::De("wCapsule.txt", "CapsuleDe.rar");
return 0;
}
squiral 2003-04-09
  • 打赏
  • 举报
回复
to killedkiss(苦修键),同是天涯沦落人,相逢何必曾相识!:-P
你在什么公司啊?
squiral 2003-04-08
  • 打赏
  • 举报
回复
啊,to killedkiss(苦修键),不会吧?怎么与我差不多啊?
killedkiss 2003-04-07
  • 打赏
  • 举报
回复
我要换工作了?不知道哪个朋友有好点的地方推荐一下,谢谢 ,顺便问一下,你们大概多少钱?
我才1200(来半年了,郁闷)
killedkiss 2003-04-07
  • 打赏
  • 举报
回复
我也是南京的
pp616(傻小子) 你在软件园???我在2号馆,不过我们公司就我一个用BCB,寂寞呀,还有一个VC(老板A),一个VB(老板B) ,没了
qiuafa 2003-04-07
  • 打赏
  • 举报
回复
好呀。
squiral 2003-04-07
  • 打赏
  • 举报
回复
没人知道更多的吗?
jspring 2003-03-31
  • 打赏
  • 举报
回复
不是,只是自己比较喜欢而已,希望以后能用得上吧。
squiral 2003-03-31
  • 打赏
  • 举报
回复
难道南京用BCB的公司就这两家吗?
to jspring():你在南京什么公司啊?也用BCB吗?
jspring 2003-03-31
  • 打赏
  • 举报
回复
呵呵,我也是南京的,还有人吗?
Lonemoon 2003-03-31
  • 打赏
  • 举报
回复
顺道 UP

友情接分

我也江苏关注
pp616 2003-03-31
  • 打赏
  • 举报
回复
金典是做股市分析软件的。
squiral 2003-03-31
  • 打赏
  • 举报
回复
哦,是吗?多谢。还有吗?
金典是做什么的啊?我比较拿手的是BCB和PHP,现在烦了PHP,想做BCB。:-P
to pp616:你是金典的吗?
pp616 2003-03-31
  • 打赏
  • 举报
回复
我说了啊。你去看看吧
oishi 2003-03-31
  • 打赏
  • 举报
回复
关注!
我在南京!
想找个用BCB的公司!
还有人帮忙呀?
pp616 2003-03-31
  • 打赏
  • 举报
回复
江苏软件园里的金典公司就是vc和bcb都用。主要用bcb
老板很好的。
加载更多回复(2)

552

社区成员

发帖
与我相关
我的任务
社区描述
C++ Builder 茶馆
社区管理员
  • 茶馆
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧