BuRak2677 Posted February 20, 2017 Share Posted February 20, 2017 Merhaba arkadaşlar bana bir arkadaşımız yardım edebilir mi? 05320000034 den başlayarak 05329999934 e kadar alt alta bir liste yapabilir misiniz acaba? TXT uzantılı da olabilir.. Teşekkürlerimi sunarım. Quote Link to comment Share on other sites More sharing options...
xmen14 Posted February 20, 2017 Share Posted February 20, 2017 Hayırdır sms mi attıracan Quote Link to comment Share on other sites More sharing options...
Bultar Posted February 20, 2017 Share Posted February 20, 2017 Sözlük falan mı yapmaya çalışıyorsun ? 1 Quote Link to comment Share on other sites More sharing options...
KintaRo Posted February 21, 2017 Share Posted February 21, 2017 valla 3 satır kodla yapılabilir ama çok şüpheli geldi şimdi 1 Quote Link to comment Share on other sites More sharing options...
FeritEtemSinBin Posted February 21, 2017 Share Posted February 21, 2017 (edited) cmd ile bile yapılınır gibime geldi sadece bir değişken i 0532000003 den başlatıp 05329999934 de bitircen her aarttığında txt ye yazcak bunları da döngü ile yapcan birazdan örnek atarım Buyur Hallettim cmd ile masaüstünde numaralar.txt oluşturuyo cmd ye kaydet çalıştır FOR /L %%G IN (200000,1,299999) DO echo 53%%G34 >> %userprofile%\Desktop\numaralar.txt Edited February 21, 2017 by FeritEtemSinBin Komut u ekledim 1 Quote Link to comment Share on other sites More sharing options...
MrRush Posted February 21, 2017 Share Posted February 21, 2017 Bu rakkamlar arasında numarası olan var mı? Quote Link to comment Share on other sites More sharing options...
FeritEtemSinBin Posted February 21, 2017 Share Posted February 21, 2017 Şimdi, dj sms yazdı: Bu rakkamlar arasında numarası olan var mı? kodu değiştirise olmayanlar da olabilir ilerde 1 Quote Link to comment Share on other sites More sharing options...
yineben Posted February 21, 2017 Share Posted February 21, 2017 merhaba bu çalışmanın amacını söyleyebilirseniz sevinirim. Quote Link to comment Share on other sites More sharing options...
xmen14 Posted February 21, 2017 Share Posted February 21, 2017 Önceden mahallenin çocukları apartmanların zillerini çalıp kaçarlardı. Bu da sırayla numaraları çaldırıp kapatacak galiba [emoji3] Quote Link to comment Share on other sites More sharing options...
BuRak2677 Posted February 21, 2017 Author Share Posted February 21, 2017 (edited) Hayır her hangi bir zarar yok. Katakulli bir davranış yok. Sadece kişisel bir soruydu bu biraz meraktan diyelim. Numara olduğu için hemen aklınıza dolandırıcılık gelmesin. Hala geliyorsa düşüncenizi değiştireyim ABD'nin CIA istihbarat teşkilatına vereceğim Bu arada @FeritEtemSinBin kardeş çok sağol var ol teşekkür ederim...Arkadaşlar sıradaki sorum, oluşturulan metin dosyasını nasıl contact dosyasına çevirebilirim excel ile denedim bozuluyor içeri aktarınca.. Yani isimsiz contacts dosyası yapmak istiyorum rehbere kaydetmek için nasıl olacak bu iş? Örnek .csv ya da .vcf dosyası yapmak istiyorum.. Edited February 21, 2017 by BuRak2677 Quote Link to comment Share on other sites More sharing options...
KintaRo Posted February 21, 2017 Share Posted February 21, 2017 StreamWriter sw = new StreamWriter(Environment.SpecialFolder.Desktop + "\\numaralar.txt"); for (long i = 5320000034; i < 5329999934; i++) { sw.WriteLine("0" + i.ToString()); } C# ile bu şekilde yapılabilir, biraz denedim sanırım i7 işlemci ile 30 dk gibi bir sürede tamamlanır. Contact dosyasından bir örnek verebilirsen onu da yaparız. Ama halen bu iş bana toplu sms gibi geliyor 2 Quote Link to comment Share on other sites More sharing options...
FeritEtemSinBin Posted February 21, 2017 Share Posted February 21, 2017 Şimdi, KintaRo yazdı: StreamWriter sw = new StreamWriter(Environment.SpecialFolder.Desktop + "\\numaralar.txt"); for (long i = 5320000034; i < 5329999934; i++) { sw.WriteLine("0" + i.ToString()); } C# ile bu şekilde yapılabilir, biraz denedim sanırım i7 işlemci ile 30 dk gibi bir sürede tamamlanır. Contact dosyasından bir örnek verebilirsen onu da yaparız. Ama halen bu iş bana toplu sms gibi geliyor öyle zaten Quote Link to comment Share on other sites More sharing options...
BuRak2677 Posted February 21, 2017 Author Share Posted February 21, 2017 8 dakika önce, KintaRo yazdı: StreamWriter sw = new StreamWriter(Environment.SpecialFolder.Desktop + "\\numaralar.txt"); for (long i = 5320000034; i < 5329999934; i++) { sw.WriteLine("0" + i.ToString()); } C# ile bu şekilde yapılabilir, biraz denedim sanırım i7 işlemci ile 30 dk gibi bir sürede tamamlanır. Contact dosyasından bir örnek verebilirsen onu da yaparız. Ama halen bu iş bana toplu sms gibi geliyor Örnek .CSV veya .VCF dosyası Quote Link to comment Share on other sites More sharing options...
MrRush Posted February 21, 2017 Share Posted February 21, 2017 Şüpheli olduğundan yardım edilmesini istemem doğrusu. Kim kimi ne kadar tanıyor, nasıl güvenilebilinir ki. Quote Link to comment Share on other sites More sharing options...
KintaRo Posted February 21, 2017 Share Posted February 21, 2017 yardım etmemek kolay ama arkadaşın istediği çok zor bir şey değil, sen söylemezsen diğeri söyler bu işlerle ilgilenen herkesin yapabileceği bir iş. Quote Link to comment Share on other sites More sharing options...
BuRak2677 Posted February 23, 2017 Author Share Posted February 23, 2017 Yardik edebilcei yok mu vcf ya dacsv icin? Quote Link to comment Share on other sites More sharing options...
FeritEtemSinBin Posted February 23, 2017 Share Posted February 23, 2017 Please register to see this content. Quote Link to comment Share on other sites More sharing options...
iomerg Posted February 23, 2017 Share Posted February 23, 2017 (edited) On 21.02.2017 at 10:55, FeritEtemSinBin yazdı: cmd ile bile yapılınır gibime geldi sadece bir değişken i 0532000003 den başlatıp 05329999934 de bitircen her aarttığında txt ye yazcak bunları da döngü ile yapcan birazdan örnek atarım Buyur Hallettim cmd ile masaüstünde numaralar.txt oluşturuyo cmd ye kaydet çalıştır FOR /L %%G IN (200000,1,299999) DO echo 53%%G34 >> %userprofile%\Desktop\numaralar.txt Bunu linux'ta yapabilirmiyiz. Kodlar nedir? hallodu teşekkür ederim Edited February 23, 2017 by iomerg Quote Link to comment Share on other sites More sharing options...
FeritEtemSinBin Posted February 23, 2017 Share Posted February 23, 2017 Şimdi, iomerg yazdı: Bunu linux'ta yapabilirmiyiz. Kodlar nedir? hallodu teşekkür ederim eğer halletiyseniz burayada yazın da belki birine lazım olur yada başka bi sorununa çözüm olur Quote Link to comment Share on other sites More sharing options...
BuRak2677 Posted February 24, 2017 Author Share Posted February 24, 2017 18 saat önce, FeritEtemSinBin yazdı: Please register to see this content. Bunu denedim ceviriyor ama download diyorum indiremiyorum Quote Link to comment Share on other sites More sharing options...
NotToday Posted February 24, 2017 Share Posted February 24, 2017 Bir saat önce, BuRak2677 yazdı: Bunu denedim ceviriyor ama download diyorum indiremiyorum Bunu sanırım bir yazılım veya kişi görüntüleyice görüntüleyeceksiniz. Bu şekilde çalışacağını sanmıyorum zaten. Bu gibi yazılımların algıladığı bir format var. İncelediğimde vcf dosyasının yapısı bu şekilde. Version değişiklik gösterebiliyor. Numaraları bu formatla hazırlarsan bir cihaza aktarabilirsin VERSION:2.1 N:Surname;Name;;; FN:Name Surname TEL;CELL:053xxxxxxxx END:VCARD BEGIN:VCARD VERSION:2.1 N:Surname;Name;;; FN:Name Surname TEL;CELL:053xxxxxxxx END:VCARD BEGIN:VCARD Quote Link to comment Share on other sites More sharing options...
BuRak2677 Posted February 24, 2017 Author Share Posted February 24, 2017 100 bin numarayi tek tek bu swkil yapamam nasil yapabilirim liste gibi. Acana en yukardaki kodu duzenlesek boyle yazar mi? Quote Link to comment Share on other sites More sharing options...
KintaRo Posted February 24, 2017 Share Posted February 24, 2017 istediğinizi yaptım. dosyayı seçersiniz, Başla buttonuna basınca dosyanın yanına vcf dosyasını oluşturur. Yalnız 100 bin noyu birden yapmaya çalışırsanız veriyi önce bellekte topladığı için program patlayabilir. Dosyanızı bence 10 parçaya bölüp öyle deneyin. Belki direk 100.000 satırla çalışır, denemek lazim. C# bilginiz varsa geliştirebilirsiniz, benim zamanım kıssıtlı aceleyle bu kadar oldu. Please register to see this content. Meraklısı için kodlar: using System; using System.ComponentModel; using System.IO; using System.Windows.Forms; namespace vCard { public partial class Form1 : Form { public Form1() { CheckForIllegalCrossThreadCalls = false; InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { OpenFileDialog fd = new OpenFileDialog() { CheckFileExists = true, Multiselect = false, Title = "İçinde numaraların olduğu dosyayı seçiniz:", RestoreDirectory = true }; if (fd.ShowDialog() == DialogResult.OK) { textBox1.Text = fd.FileName; } } private void button2_Click(object sender, EventArgs e) { Close(); } private void button3_Click(object sender, EventArgs e) { if (textBox1.Text != "") { backgroundWorker1.RunWorkerAsync(); } } private void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e) { pictureBox1.Visible = true; string line = ""; string v_line = ""; StreamReader file = new StreamReader(textBox1.Text); while ((line = file.ReadLine()) != null) { v_line += "BEGIN:VCARD\nVERSION:2.1\nN:Surname;Name;;;\nFN:Name Surname\nTEL;CELL:" + line + "\nEND:VCARD" + Environment.NewLine; } file.Close(); File.WriteAllText(Path.GetDirectoryName(textBox1.Text) + "\\numalar.vcf", v_line); pictureBox1.Visible = false; MessageBox.Show("vCard dosyası oluşturuldu:\n\n" + Path.GetDirectoryName(textBox1.Text) + "\\numalar.vcf"); } } } 2 Quote Link to comment Share on other sites More sharing options...
BuRak2677 Posted February 24, 2017 Author Share Posted February 24, 2017 Teşekkürler @KintaRo müsait olduğun bir zamanda FIX lersen iyi olur. Ellerine gözlerine parmaklarına sağlık ne diyeyim... Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.